From d879581aaf37f3f3a219ca109600b1930f3f63ec Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 11 Apr 2022 14:18:24 +0000 Subject: [PATCH] Bump actions/upload-artifact from 2 to 3 Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 2 to 3. - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](https://github.com/actions/upload-artifact/compare/v2...v3) --- updated-dependencies: - dependency-name: actions/upload-artifact dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/pylint.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/pylint.yml b/.github/workflows/pylint.yml index fc61962..85a2f09 100644 --- a/.github/workflows/pylint.yml +++ b/.github/workflows/pylint.yml @@ -46,22 +46,22 @@ jobs: run: | coverage run -m pytest;coverage report -m; coverage html - name: Build Artifacts for Arcives - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v3 with: name: html-code-coverage-report path: htmlcov/* - name: Upload lint report for Arcives - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v3 with: name: text-reports path: report_lint.txt - name: Upload Coverage report for Arcives - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v3 with: name: text-reports path: report_coverage.txt - name: Upload pytest report for Arcives - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v3 with: name: text-reports path: report_pytest.txt