From a9a8ffad27c5ac191b218cca77943a530ad387e6 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 8 Apr 2022 21:39:52 +0200 Subject: [PATCH] build(deps): bump actions/upload-artifact from 2 to 3 (#458) 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] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- .github/workflows/build-test-release.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build-test-release.yml b/.github/workflows/build-test-release.yml index 5a220a08b..83008bc69 100644 --- a/.github/workflows/build-test-release.yml +++ b/.github/workflows/build-test-release.yml @@ -25,14 +25,14 @@ jobs: WorkDir: . UsePython3: "3.7" - name: ort-action-artifacts-reports - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v3 with: name: analysis-reports path: | .ort/reports/* if: always() - name: ort-action-artifacts-analyzer - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v3 with: name: analysis-analyzer path: | @@ -82,7 +82,7 @@ jobs: fail_ci_if_error: true path_to_write_report: ./coverage/codecov_report.txt verbose: true - - uses: actions/upload-artifact@v2 + - uses: actions/upload-artifact@v3 if: success() || failure() with: name: test-results-unit-python_${{ matrix.python-version }}