Skip to content
Merged
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
20 changes: 10 additions & 10 deletions .github/workflows/python-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
ruff:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- name: Install Ruff
run: pip install ruff
- name: Ruff Check
Expand All @@ -31,7 +31,7 @@ jobs:
mypy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- name: Checkout submodules
run: git submodule update --init --recursive --depth 1
- name: Install typing dependencies
Expand All @@ -50,7 +50,7 @@ jobs:
install-linux-dependencies: true
build-type: "Debug"
version: ${{ env.sdl-version }}
- uses: actions/checkout@v5
- uses: actions/checkout@v6
with:
fetch-depth: ${{ env.git-depth }}
- name: Checkout submodules
Expand All @@ -76,7 +76,7 @@ jobs:
sdl-version: ["3.2.16"]
fail-fast: true
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
with:
fetch-depth: ${{ env.git-depth }}
- name: Checkout submodules
Expand Down Expand Up @@ -106,7 +106,7 @@ jobs:
fail-fast: false

steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
with:
fetch-depth: ${{ env.git-depth }}
- name: Checkout submodules
Expand Down Expand Up @@ -171,7 +171,7 @@ jobs:
install-linux-dependencies: true
build-type: "Debug"
version: ${{ env.sdl-version }}
- uses: actions/checkout@v5
- uses: actions/checkout@v6
with:
fetch-depth: ${{ env.git-depth }}
- name: Checkout submodules
Expand All @@ -195,7 +195,7 @@ jobs:
matrix:
os: ["ubuntu-latest"] # "windows-latest" disabled due to free-threaded build issues
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
with:
fetch-depth: ${{ env.git-depth }}
- name: Checkout submodules
Expand Down Expand Up @@ -227,7 +227,7 @@ jobs:
env:
BUILD_DESC: ""
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
with:
fetch-depth: ${{ env.git-depth }}
- name: Checkout submodules
Expand Down Expand Up @@ -282,7 +282,7 @@ jobs:
env:
PYTHON_DESC: ""
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
with:
fetch-depth: ${{ env.git-depth }}
- name: Checkout submodules
Expand Down Expand Up @@ -322,7 +322,7 @@ jobs:
needs: [ruff, mypy, sdist]
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
with:
fetch-depth: ${{ env.git-depth }}
- name: Checkout submodules
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release-on-tag.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
contents: write
steps:
- name: Checkout code
uses: actions/checkout@v5
uses: actions/checkout@v6
- name: Generate body
run: |
scripts/get_release_description.py | tee release_body.md
Expand Down
Loading