Skip to content
Open
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
6 changes: 3 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
- windows_x86_64
runs-on: windows-2025
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- name: Disk Cleanup
run: |
Get-PSDrive
Expand Down Expand Up @@ -56,7 +56,7 @@ jobs:
# - ios
runs-on: macos-15
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- name: Select Xcode 16.4
run: sudo xcode-select --switch /Applications/Xcode_16.4.app/Contents/Developer
- run: brew install ninja
Expand Down Expand Up @@ -91,7 +91,7 @@ jobs:
# - android_prefixed
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- name: Disk Cleanup
run: |
df -h
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
outputs:
output-artifact-id: ${{ steps.artifact-upload-step.outputs.artifact-id }}
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- name: Determine Release Tag
env:
RELEASE: ${{ github.ref_name }}
Expand Down Expand Up @@ -66,7 +66,7 @@ jobs:
outputs:
output-artifact-id: ${{ steps.artifact-upload-step.outputs.artifact-id }}
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- name: Select Xcode 16.4
run: sudo xcode-select --switch /Applications/Xcode_16.4.app/Contents/Developer
- run: brew install ninja
Expand Down Expand Up @@ -110,7 +110,7 @@ jobs:
outputs:
output-artifact-id: ${{ steps.artifact-upload-step.outputs.artifact-id }}
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- name: Disk Cleanup
run: |
df -h
Expand Down Expand Up @@ -142,7 +142,7 @@ jobs:
steps:
# Checkout first to avoid damaging artifact download below
- name: Checkout
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
# Work around the fact that in the context of a pull request github.sha
# references a dynamic merge commit rather than the branch head
Expand All @@ -166,7 +166,7 @@ jobs:
steps:
# Checkout first to avoid damaging artifact download below
- name: Checkout
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
# Work around the fact that in the context of a pull request github.sha
# references a dynamic merge commit rather than the branch head
Expand All @@ -190,7 +190,7 @@ jobs:
steps:
# Checkout first to avoid damaging artifact download below
- name: Checkout
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
# Work around the fact that in the context of a pull request github.sha
# references a dynamic merge commit rather than the branch head
Expand Down