Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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: |
Expand Down Expand Up @@ -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

Expand Down Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/codeql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
Loading