From 0e51aec1c2bacc45ba4c6683bda3740b4825b9ef Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 11 Apr 2022 15:27:54 +0000 Subject: [PATCH] chore(deps): 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/integration.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/integration.yml b/.github/workflows/integration.yml index 20d6172..a901d1d 100644 --- a/.github/workflows/integration.yml +++ b/.github/workflows/integration.yml @@ -82,7 +82,7 @@ jobs: with: work-dir: ${{ env.WORK_DIR }} - name: upload lint report - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v3 if: always() with: name: lint-report @@ -110,13 +110,13 @@ jobs: uses: wwmoraes/actions/golang/test@master id: test - name: upload coverage report - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v3 if: always() with: name: coverage-report path: ${{ steps.test.outputs.cover-profile }} - name: upload test report - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v3 if: always() with: name: test-report