From acb570c38ad99c0cda68b6897d6fa7b1a7582205 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 9 Jan 2024 00:16:38 +0000 Subject: [PATCH] chore(deps): bump actions/upload-artifact from 3 to 4 Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 3 to 4. - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](https://github.com/actions/upload-artifact/compare/v3...v4) --- 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-tests-reusable.yml | 2 +- .github/workflows/msbuild.yml | 2 +- .github/workflows/publish-release-reusable.yml | 2 +- .github/workflows/refman.yml | 2 +- .github/workflows/xunit-tests-reusable.yml | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/integration-tests-reusable.yml b/.github/workflows/integration-tests-reusable.yml index b4dd08713e..d946ce9b48 100644 --- a/.github/workflows/integration-tests-reusable.yml +++ b/.github/workflows/integration-tests-reusable.yml @@ -160,7 +160,7 @@ jobs: run: | ${{ inputs.all_platforms }} && export DAFNY_RELEASE="${{ github.workspace }}/unzippedRelease/dafny" dotnet test --logger trx --logger "console;verbosity=normal" --collect:"XPlat Code Coverage" --settings dafny/Source/IntegrationTests/coverlet.runsettings dafny/Source/IntegrationTests - - uses: actions/upload-artifact@v3 + - uses: actions/upload-artifact@v4 if: always() with: name: integration-test-results-${{ matrix.os }} diff --git a/.github/workflows/msbuild.yml b/.github/workflows/msbuild.yml index 6e3d1919d8..c77ba6547c 100644 --- a/.github/workflows/msbuild.yml +++ b/.github/workflows/msbuild.yml @@ -174,7 +174,7 @@ jobs: # Report "yellow" status if less than 90% total coverage. thresholds: '86 90' - - uses: actions/upload-artifact@v3 + - uses: actions/upload-artifact@v4 if: always() # Upload results even if the job fails with: name: test-coverage-results diff --git a/.github/workflows/publish-release-reusable.yml b/.github/workflows/publish-release-reusable.yml index d20c14aa33..cbcd6d1b03 100644 --- a/.github/workflows/publish-release-reusable.yml +++ b/.github/workflows/publish-release-reusable.yml @@ -86,7 +86,7 @@ jobs: run: dotnet pack --version-suffix ${{ inputs.name }} dafny/Source/Dafny.sln - name: Make NuGet package available as an artifact - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: nuget-packages path: dafny/Binaries/*.nupkg diff --git a/.github/workflows/refman.yml b/.github/workflows/refman.yml index b0447c6347..b79973bad4 100644 --- a/.github/workflows/refman.yml +++ b/.github/workflows/refman.yml @@ -69,7 +69,7 @@ jobs: make -C dafny/docs/DafnyRef - name: Check run: ls -la dafny/docs/DafnyRef/DafnyRef.pdf - - uses: actions/upload-artifact@v3 + - uses: actions/upload-artifact@v4 if: always() with: name: DafnyRef diff --git a/.github/workflows/xunit-tests-reusable.yml b/.github/workflows/xunit-tests-reusable.yml index e5f5ee0f8f..b4f7c95c86 100644 --- a/.github/workflows/xunit-tests-reusable.yml +++ b/.github/workflows/xunit-tests-reusable.yml @@ -85,7 +85,7 @@ jobs: run: dotnet test --no-restore --logger "console;verbosity=normal" --logger trx --collect:"XPlat Code Coverage" --settings Source/AutoExtern.Test/coverlet.runsettings Source/AutoExtern.Test - name: Run DafnyRuntime Tests run: dotnet test --no-restore --logger "console;verbosity=normal" --logger trx --collect:"XPlat Code Coverage" --settings Source/DafnyRuntime.Tests/coverlet.runsettings Source/DafnyRuntime.Tests - - uses: actions/upload-artifact@v3 + - uses: actions/upload-artifact@v4 if: always() with: name: unit-test-results-${{ matrix.os }}