From 14ffcc1956d3ce567b232acdb0d70309c45037ab Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 21 Jul 2026 10:09:35 +0000 Subject: [PATCH] ci: bump actions/setup-dotnet from 5.4.0 to 6.0.0 Bumps [actions/setup-dotnet](https://github.com/actions/setup-dotnet) from 5.4.0 to 6.0.0. - [Release notes](https://github.com/actions/setup-dotnet/releases) - [Commits](https://github.com/actions/setup-dotnet/compare/26b0ec14cb23fa6904739307f278c14f94c95bf1...a98b56852c35b8e3190ac28c8c2271da59106c68) --- updated-dependencies: - dependency-name: actions/setup-dotnet dependency-version: 6.0.0 dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/analyzers.yml | 4 ++-- .github/workflows/canary.yml | 4 ++-- .github/workflows/ci.yml | 6 +++--- .github/workflows/dummies.yml | 2 +- .github/workflows/gendoc-docs.yml | 2 +- .github/workflows/release-dryrun.yml | 2 +- .github/workflows/release.yml | 2 +- .github/workflows/sonar.yml | 2 +- 8 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.github/workflows/analyzers.yml b/.github/workflows/analyzers.yml index 3acc25fb..f624671c 100644 --- a/.github/workflows/analyzers.yml +++ b/.github/workflows/analyzers.yml @@ -35,7 +35,7 @@ jobs: uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7 - name: Setup .NET - uses: actions/setup-dotnet@26b0ec14cb23fa6904739307f278c14f94c95bf1 # v5 + uses: actions/setup-dotnet@a98b56852c35b8e3190ac28c8c2271da59106c68 # v6.0.0 with: dotnet-version: '10.0.x' @@ -65,7 +65,7 @@ jobs: uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7 - name: Setup SDKs (release + floor) - uses: actions/setup-dotnet@26b0ec14cb23fa6904739307f278c14f94c95bf1 # v5 + uses: actions/setup-dotnet@a98b56852c35b8e3190ac28c8c2271da59106c68 # v6.0.0 with: # Two SDKs on purpose. 10.0.x is the SDK release.yml packs with, so the pack step below produces # the exact artifact consumers receive. 8.0.100 (Roslyn 4.8.0 == VS 2022 17.8) is the oldest diff --git a/.github/workflows/canary.yml b/.github/workflows/canary.yml index 06e2935a..5c57c65f 100644 --- a/.github/workflows/canary.yml +++ b/.github/workflows/canary.yml @@ -48,14 +48,14 @@ jobs: - name: Setup the next .NET preview (best effort) id: preview continue-on-error: true - uses: actions/setup-dotnet@26b0ec14cb23fa6904739307f278c14f94c95bf1 # v5 + uses: actions/setup-dotnet@a98b56852c35b8e3190ac28c8c2271da59106c68 # v6.0.0 with: dotnet-version: '11.0.x' dotnet-quality: preview # The build SDK. net8.0 is only a target framework; global.json pins the .NET 10 SDK for the build itself. - name: Setup the build SDK (.NET 10) - uses: actions/setup-dotnet@26b0ec14cb23fa6904739307f278c14f94c95bf1 # v5 + uses: actions/setup-dotnet@a98b56852c35b8e3190ac28c8c2271da59106c68 # v6.0.0 with: dotnet-version: '10.0.x' diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 1e64168c..12fc2263 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -42,7 +42,7 @@ jobs: uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7 - name: Setup .NET - uses: actions/setup-dotnet@26b0ec14cb23fa6904739307f278c14f94c95bf1 # v5 + uses: actions/setup-dotnet@a98b56852c35b8e3190ac28c8c2271da59106c68 # v6.0.0 with: dotnet-version: '10.0.x' @@ -91,7 +91,7 @@ jobs: # RUNS net472 assemblies ships on the windows-latest image, and the net472 targeting pack for COMPILATION # is supplied hermetically by the Microsoft.NETFramework.ReferenceAssemblies package — so no extra install. - name: Setup .NET (build SDK) - uses: actions/setup-dotnet@26b0ec14cb23fa6904739307f278c14f94c95bf1 # v5 + uses: actions/setup-dotnet@a98b56852c35b8e3190ac28c8c2271da59106c68 # v6.0.0 with: dotnet-version: '10.0.x' @@ -132,7 +132,7 @@ jobs: # runs normally, and 8.0.x brings the .NET 8 runtime — the floor the tooling ships against — so the run # step below can execute the net8 binaries on it. - name: Setup .NET (floor runtime + build SDK) - uses: actions/setup-dotnet@26b0ec14cb23fa6904739307f278c14f94c95bf1 # v5 + uses: actions/setup-dotnet@a98b56852c35b8e3190ac28c8c2271da59106c68 # v6.0.0 with: dotnet-version: | 8.0.x diff --git a/.github/workflows/dummies.yml b/.github/workflows/dummies.yml index 820fa92f..9bfa33aa 100644 --- a/.github/workflows/dummies.yml +++ b/.github/workflows/dummies.yml @@ -52,7 +52,7 @@ jobs: # executes on its own advertised runtime (default roll-forward stays within a major, so a net6.0 consumer # binds .NET 6 and can never roll onto net8/net10). - name: Setup .NET (pack SDK + downlevel runtimes) - uses: actions/setup-dotnet@26b0ec14cb23fa6904739307f278c14f94c95bf1 # v5 + uses: actions/setup-dotnet@a98b56852c35b8e3190ac28c8c2271da59106c68 # v6.0.0 with: dotnet-version: | 6.0.x diff --git a/.github/workflows/gendoc-docs.yml b/.github/workflows/gendoc-docs.yml index 5492cc03..a5adca0d 100644 --- a/.github/workflows/gendoc-docs.yml +++ b/.github/workflows/gendoc-docs.yml @@ -43,7 +43,7 @@ jobs: ref: ${{ github.head_ref }} - name: Setup .NET - uses: actions/setup-dotnet@26b0ec14cb23fa6904739307f278c14f94c95bf1 # v5 + uses: actions/setup-dotnet@a98b56852c35b8e3190ac28c8c2271da59106c68 # v6.0.0 with: dotnet-version: '10.0.x' diff --git a/.github/workflows/release-dryrun.yml b/.github/workflows/release-dryrun.yml index 6fa9d20a..9982e9f6 100644 --- a/.github/workflows/release-dryrun.yml +++ b/.github/workflows/release-dryrun.yml @@ -53,7 +53,7 @@ jobs: fetch-depth: 0 - name: Setup .NET - uses: actions/setup-dotnet@26b0ec14cb23fa6904739307f278c14f94c95bf1 # v5 + uses: actions/setup-dotnet@a98b56852c35b8e3190ac28c8c2271da59106c68 # v6.0.0 with: # The release SDK — the same one release.yml packs with, so this rehearses the real pack path. dotnet-version: '10.0.x' diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 2c9049c6..85a6ae96 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -79,7 +79,7 @@ jobs: fetch-depth: 0 - name: Setup .NET - uses: actions/setup-dotnet@26b0ec14cb23fa6904739307f278c14f94c95bf1 # v5 + uses: actions/setup-dotnet@a98b56852c35b8e3190ac28c8c2271da59106c68 # v6.0.0 with: dotnet-version: '10.0.x' diff --git a/.github/workflows/sonar.yml b/.github/workflows/sonar.yml index 7a214ce5..88199a22 100644 --- a/.github/workflows/sonar.yml +++ b/.github/workflows/sonar.yml @@ -41,7 +41,7 @@ jobs: fetch-depth: 0 - name: Setup .NET - uses: actions/setup-dotnet@26b0ec14cb23fa6904739307f278c14f94c95bf1 # v5 + uses: actions/setup-dotnet@a98b56852c35b8e3190ac28c8c2271da59106c68 # v6.0.0 with: dotnet-version: '10.0.x'