From be86410579bdb8eec605f5dac0657a4c9301dcb4 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 11 Apr 2022 01:35:29 +0000 Subject: [PATCH] build(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/ci.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index ff67dfeee..f285f9c38 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -71,7 +71,7 @@ jobs: files: ${{ env.COVERAGE }} flags: unit,macos - name: upload coverage - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v3 with: name: coverage-${{ runner.os }}-${{ github.job }}-${{ strategy.job-index }} path: ${{ env.COVERAGE }} @@ -94,7 +94,7 @@ jobs: - name: build updated ci image run: make ci-cache - name: upload ci image - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v3 with: name: ci-image.tar.zst path: ${{ github.workspace }}/.cache/ci-image.tar.zst @@ -119,7 +119,7 @@ jobs: files: ${{ env.COVERAGE }} flags: unit,linux - name: upload coverage - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v3 with: name: coverage-${{ runner.os }}-${{ github.job }}-${{ strategy.job-index }} path: ${{ env.COVERAGE }} @@ -153,7 +153,7 @@ jobs: files: ${{ env.COVERAGE }} flags: integration,linux - name: upload coverage - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v3 with: name: coverage-${{ runner.os }}-${{ github.job }}-${{ strategy.job-index }} path: ${{ env.COVERAGE }} @@ -177,7 +177,7 @@ jobs: find coverage/ -type f -name "*coverage*" -print0 | xargs -0 ./hack/collate.awk > "$COVERAGE" ./hack/ci-coverage.sh "$COVERAGE" - name: upload final coverage - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v3 with: name: coverage path: ${{ env.COVERAGE }}