From 4132b1b08d3980a5c192fade76dba6244a85e08a Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 3 Sep 2024 22:55:14 +0000 Subject: [PATCH] Bump actions/download-artifact from 3 to 4.1.7 in /.github/workflows Bumps [actions/download-artifact](https://github.com/actions/download-artifact) from 3 to 4.1.7. - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](https://github.com/actions/download-artifact/compare/v3...v4.1.7) --- updated-dependencies: - dependency-name: actions/download-artifact dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- .github/workflows/nuget.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/nuget.yml b/.github/workflows/nuget.yml index 0ae58bc..00347dc 100644 --- a/.github/workflows/nuget.yml +++ b/.github/workflows/nuget.yml @@ -49,7 +49,7 @@ jobs: uses: actions/setup-dotnet@v4 # Download the NuGet package created in the previous job - - uses: actions/download-artifact@v3 + - uses: actions/download-artifact@v4.1.7 with: name: nuget path: ${{ env.NuGetDirectory }} @@ -82,7 +82,7 @@ jobs: needs: [ validate_nuget, run_test ] steps: # Download the NuGet package created in the previous job - - uses: actions/download-artifact@v3 + - uses: actions/download-artifact@v4.1.7 with: name: nuget path: ${{ env.NuGetDirectory }}