From 9ec56cad1191da0b8dc7bc4cbd5692a7b67e09f4 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Fri, 27 Feb 2026 17:32:21 +0000 Subject: [PATCH] chore(deps): update github artifact actions --- .github/workflows/main.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index d617f02..ca39ffe 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -64,7 +64,7 @@ jobs: - run: dotnet pack --configuration Release --output ${{ env.NuGetDirectory }} # Publish the NuGet package as an artifact, so they can be used in the following jobs - - uses: actions/upload-artifact@v3 + - uses: actions/upload-artifact@v7 with: name: nuget if-no-files-found: error @@ -82,7 +82,7 @@ jobs: dotnet-version: 8.x # Download the NuGet package created in the previous job - - uses: actions/download-artifact@v3 + - uses: actions/download-artifact@v8 with: name: nuget path: ${{ env.NuGetDirectory }} @@ -117,7 +117,7 @@ jobs: # needs: [ validate_nuget, run_test, update_release_draft ] steps: # Download the NuGet package created in the previous job - - uses: actions/download-artifact@v3 + - uses: actions/download-artifact@v8 with: name: nuget path: ${{ env.NuGetDirectory }}