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 }}