diff options
author | dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> | 2022-03-07 17:10:55 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-03-07 17:10:55 +0100 |
commit | 499a5306fcc2a46c7431354e087df0edffb6f3d3 (patch) | |
tree | 3882777c35aabfccfb1eff8929eed572e9f6fadb /.github | |
parent | 970c0d94443a045f2d3bd571ab29a01f5c5e14b4 (diff) | |
download | pylint-git-499a5306fcc2a46c7431354e087df0edffb6f3d3.tar.gz |
Bump actions/upload-artifact from 2.3.1 to 3.0.0 (#5867)
* Bump actions/upload-artifact from 2.3.1 to 3
Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 2.3.1 to 3.
- [Release notes](https://github.com/actions/upload-artifact/releases)
- [Commits](https://github.com/actions/upload-artifact/compare/v2.3.1...v3)
---
updated-dependencies:
- dependency-name: actions/upload-artifact
dependency-type: direct:production
update-type: version-update:semver-major
...
Signed-off-by: dependabot[bot] <support@github.com>
* Pin 3.0.0
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Marc Mueller <30130371+cdce8p@users.noreply.github.com>
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/ci.yaml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 4d0ddd9fe..0ab58deb4 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -226,7 +226,7 @@ jobs: . venv/bin/activate pytest -vv --durations=20 --benchmark-disable --cov --cov-report= tests/ - name: Upload coverage artifact - uses: actions/upload-artifact@v2.3.1 + uses: actions/upload-artifact@v3.0.0 with: name: coverage-${{ matrix.python-version }} path: .coverage @@ -321,7 +321,7 @@ jobs: run: >- echo "::set-output name=datetime::"$(date "+%Y%m%d_%H%M") - name: Upload benchmark artifact - uses: actions/upload-artifact@v2.3.1 + uses: actions/upload-artifact@v3.0.0 with: name: benchmark-${{ runner.os }}-${{ matrix.python-version }}_${{ |