diff --git a/.github/workflows/pr.yml b/.github/workflows/pr.yml index 5d43de9..f777e57 100644 --- a/.github/workflows/pr.yml +++ b/.github/workflows/pr.yml @@ -32,7 +32,7 @@ jobs: steps: - uses: actions/checkout@v4 - name: Setup .NET - uses: actions/setup-dotnet@v3 + uses: actions/setup-dotnet@v4 - name: Run tests run: dotnet test --configuration Release --collect:"XPlat Code Coverage" diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 24f67dc..7c36e59 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -49,7 +49,7 @@ jobs: # Install the .NET SDK indicated in the global.json file - name: Setup .NET - uses: actions/setup-dotnet@v3 + uses: actions/setup-dotnet@v4 # Create the NuGet package in the folder from the environment variable NuGetDirectory - run: dotnet pack --configuration Release --output ${{ env.NuGetDirectory }} /p:Version=${{ steps.release.outputs.release-version }}