From 02fec6c8e66100ba78a505e5452bffd803d4892f Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 14 Aug 2026 05:18:35 +0000 Subject: [PATCH] ci: bump the github-actions group across 1 directory with 3 updates Bumps the github-actions group with 3 updates in the / directory: [actions/checkout](https://github.com/actions/checkout), [actions/setup-dotnet](https://github.com/actions/setup-dotnet) and [actions/setup-python](https://github.com/actions/setup-python). 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) Updates `actions/setup-python` from 5 to 7 - [Release notes](https://github.com/actions/setup-python/releases) - [Commits](https://github.com/actions/setup-python/compare/v5...v7) --- 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 - dependency-name: actions/setup-python dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions ... Signed-off-by: dependabot[bot] --- .github/workflows/build.yml | 8 ++++---- .github/workflows/codeql.yml | 4 ++-- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index f643411..de9409c 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -21,7 +21,7 @@ jobs: runs-on: macos-26 steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 with: fetch-depth: 0 # MinVer needs full history submodules: recursive # Syphon framework source for the native shim @@ -35,7 +35,7 @@ jobs: xcode-select -p xcodebuild -version - - 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: | @@ -135,7 +135,7 @@ jobs: # directory), proving frames cross the real mach/IOSurface boundary byte-exact. run: dotnet run --project samples/Syphon.NET.Peer -c Release --no-build -- crosstest - - uses: actions/setup-python@v5 + - uses: actions/setup-python@v7 with: python-version: "3.12" # syphon-python ships wheels for cp38-cp312 only @@ -209,7 +209,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 093af8a..36acbd0 100644 --- a/.github/workflows/codeql.yml +++ b/.github/workflows/codeql.yml @@ -26,14 +26,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