From 34701c0f41b625fa6da23a8458d378d64268dd34 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 14 Aug 2026 05:23:36 +0000 Subject: [PATCH] ci: bump the github-actions group across 1 directory with 2 updates Bumps the github-actions group with 2 updates in the / directory: [actions/checkout](https://github.com/actions/checkout) and [actions/setup-dotnet](https://github.com/actions/setup-dotnet). Updates `actions/checkout` from 6 to 7 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v6...v7) Updates `actions/setup-dotnet` from 5 to 6 - [Release notes](https://github.com/actions/setup-dotnet/releases) - [Commits](https://github.com/actions/setup-dotnet/compare/v5...v6) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: actions/setup-dotnet dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions ... Signed-off-by: dependabot[bot] --- .github/workflows/build.yml | 6 +++--- .github/workflows/codeql.yml | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 987c62f..2b315f5 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -19,12 +19,12 @@ jobs: runs-on: windows-latest steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 with: fetch-depth: 0 # MinVer needs full history submodules: recursive # Spout2 SDK for the native shim - - uses: actions/setup-dotnet@v5 + - uses: actions/setup-dotnet@v6 with: # net11.0 needs the .NET 11 preview SDK alongside .NET 10; global.json selects it. dotnet-version: | @@ -131,7 +131,7 @@ jobs: name: nuget-package path: ${{ env.NuGetDirectory }} - - uses: actions/setup-dotnet@v5 + - uses: actions/setup-dotnet@v6 - name: NuGet login (OIDC) id: login diff --git a/.github/workflows/codeql.yml b/.github/workflows/codeql.yml index 3d86222..4f321fd 100644 --- a/.github/workflows/codeql.yml +++ b/.github/workflows/codeql.yml @@ -24,14 +24,14 @@ jobs: steps: - name: Checkout code - uses: actions/checkout@v6 + uses: actions/checkout@v7 with: submodules: recursive - name: Setup .NET SDK # Install both SDKs and let global.json pick: setup-dotnet resolving the pinned preview from # global.json alone left the runner on its preinstalled 10.0.x, which cannot target net11.0. - uses: actions/setup-dotnet@v5 + uses: actions/setup-dotnet@v6 with: dotnet-version: | 10.0.x