From 3d5f75b8729365a5a45835d98794c15ca4042077 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 11 Dec 2023 09:33:01 +0000 Subject: [PATCH] Bump actions/setup-dotnet from 3 to 4 Bumps [actions/setup-dotnet](https://github.com/actions/setup-dotnet) from 3 to 4. - [Release notes](https://github.com/actions/setup-dotnet/releases) - [Commits](https://github.com/actions/setup-dotnet/compare/v3...v4) --- updated-dependencies: - dependency-name: actions/setup-dotnet dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/ci.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index ac3d557f..65f7ee1d 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -27,7 +27,7 @@ jobs: with: fetch-depth: 0 # Get all the history so MinGit can compute the version - name: Setup .NET Core (latest) - uses: actions/setup-dotnet@v3 + uses: actions/setup-dotnet@v4 - run: dotnet pack NGitLab.sln --configuration Release --output ${{ env.NuGetDirectory }} /bl - uses: actions/upload-artifact@v3 with: @@ -67,7 +67,7 @@ jobs: steps: - uses: actions/checkout@v4 - name: Setup .NET Core (latest) - uses: actions/setup-dotnet@v3 + uses: actions/setup-dotnet@v4 - run: | $value = "${{ matrix.gitlab }}-${{ matrix.configuration }}".Replace(':', '-').Replace('/', '-') "artifact_name=test-results-$value" >> $env:GITHUB_OUTPUT @@ -101,7 +101,7 @@ jobs: name: nuget path: ${{ env.NuGetDirectory }} - name: Setup .NET Core - uses: actions/setup-dotnet@v3 + uses: actions/setup-dotnet@v4 - run: | Write-Host "Current ref: $env:GITHUB_REF" Write-Host "Searching nupkg in folder: ${{ env.NuGetDirectory }}"