From ffe9703b0c4f5f9d76d17b4b26e196b923e11f09 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 14 Aug 2026 06:15:36 +0000 Subject: [PATCH] ci: bump the github-actions group across 1 directory with 4 updates Bumps the github-actions group with 4 updates in the / directory: [actions/checkout](https://github.com/actions/checkout), [actions/setup-dotnet](https://github.com/actions/setup-dotnet), [actions/setup-python](https://github.com/actions/setup-python) and [actions/dependency-review-action](https://github.com/actions/dependency-review-action). 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) Updates `actions/dependency-review-action` from 4 to 5 - [Release notes](https://github.com/actions/dependency-review-action/releases) - [Commits](https://github.com/actions/dependency-review-action/compare/v4...v5) --- 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/dependency-review-action dependency-version: '5' 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 ++-- .github/workflows/dependency-review.yml | 4 ++-- .github/workflows/dependency-submission.yml | 4 ++-- 4 files changed, 10 insertions(+), 10 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 9f5b7c7..0d5d099 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 @@ -214,7 +214,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 diff --git a/.github/workflows/dependency-review.yml b/.github/workflows/dependency-review.yml index 3abd7fc..011c2c9 100644 --- a/.github/workflows/dependency-review.yml +++ b/.github/workflows/dependency-review.yml @@ -16,10 +16,10 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout code - uses: actions/checkout@v6 + uses: actions/checkout@v7 - name: Review dependency changes - uses: actions/dependency-review-action@v4 + uses: actions/dependency-review-action@v5 with: fail-on-severity: moderate comment-summary-in-pr: on-failure diff --git a/.github/workflows/dependency-submission.yml b/.github/workflows/dependency-submission.yml index 80714f0..ecc0933 100644 --- a/.github/workflows/dependency-submission.yml +++ b/.github/workflows/dependency-submission.yml @@ -21,10 +21,10 @@ jobs: runs-on: macos-26 steps: - name: Checkout code - uses: actions/checkout@v6 + uses: actions/checkout@v7 - name: Setup .NET SDK - uses: actions/setup-dotnet@v5 + uses: actions/setup-dotnet@v6 with: dotnet-version: | 10.0.x