Skip to content

Commit f32d376

Browse files
Bump actions/checkout from 5 to 6 in the github-actions group
Bumps the github-actions group with 1 update: [actions/checkout](https://github.com/actions/checkout). Updates `actions/checkout` from 5 to 6 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v5...v6) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent 2acfae2 commit f32d376

File tree

2 files changed

+11
-11
lines changed

2 files changed

+11
-11
lines changed

.github/workflows/python-package.yml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
ruff:
2121
runs-on: ubuntu-latest
2222
steps:
23-
- uses: actions/checkout@v5
23+
- uses: actions/checkout@v6
2424
- name: Install Ruff
2525
run: pip install ruff
2626
- name: Ruff Check
@@ -31,7 +31,7 @@ jobs:
3131
mypy:
3232
runs-on: ubuntu-latest
3333
steps:
34-
- uses: actions/checkout@v5
34+
- uses: actions/checkout@v6
3535
- name: Checkout submodules
3636
run: git submodule update --init --recursive --depth 1
3737
- name: Install typing dependencies
@@ -50,7 +50,7 @@ jobs:
5050
install-linux-dependencies: true
5151
build-type: "Debug"
5252
version: ${{ env.sdl-version }}
53-
- uses: actions/checkout@v5
53+
- uses: actions/checkout@v6
5454
with:
5555
fetch-depth: ${{ env.git-depth }}
5656
- name: Checkout submodules
@@ -76,7 +76,7 @@ jobs:
7676
sdl-version: ["3.2.16"]
7777
fail-fast: true
7878
steps:
79-
- uses: actions/checkout@v5
79+
- uses: actions/checkout@v6
8080
with:
8181
fetch-depth: ${{ env.git-depth }}
8282
- name: Checkout submodules
@@ -106,7 +106,7 @@ jobs:
106106
fail-fast: false
107107

108108
steps:
109-
- uses: actions/checkout@v5
109+
- uses: actions/checkout@v6
110110
with:
111111
fetch-depth: ${{ env.git-depth }}
112112
- name: Checkout submodules
@@ -171,7 +171,7 @@ jobs:
171171
install-linux-dependencies: true
172172
build-type: "Debug"
173173
version: ${{ env.sdl-version }}
174-
- uses: actions/checkout@v5
174+
- uses: actions/checkout@v6
175175
with:
176176
fetch-depth: ${{ env.git-depth }}
177177
- name: Checkout submodules
@@ -195,7 +195,7 @@ jobs:
195195
matrix:
196196
os: ["ubuntu-latest"] # "windows-latest" disabled due to free-threaded build issues
197197
steps:
198-
- uses: actions/checkout@v5
198+
- uses: actions/checkout@v6
199199
with:
200200
fetch-depth: ${{ env.git-depth }}
201201
- name: Checkout submodules
@@ -227,7 +227,7 @@ jobs:
227227
env:
228228
BUILD_DESC: ""
229229
steps:
230-
- uses: actions/checkout@v5
230+
- uses: actions/checkout@v6
231231
with:
232232
fetch-depth: ${{ env.git-depth }}
233233
- name: Checkout submodules
@@ -282,7 +282,7 @@ jobs:
282282
env:
283283
PYTHON_DESC: ""
284284
steps:
285-
- uses: actions/checkout@v5
285+
- uses: actions/checkout@v6
286286
with:
287287
fetch-depth: ${{ env.git-depth }}
288288
- name: Checkout submodules
@@ -322,7 +322,7 @@ jobs:
322322
needs: [ruff, mypy, sdist]
323323
runs-on: ubuntu-24.04
324324
steps:
325-
- uses: actions/checkout@v5
325+
- uses: actions/checkout@v6
326326
with:
327327
fetch-depth: ${{ env.git-depth }}
328328
- name: Checkout submodules

.github/workflows/release-on-tag.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
contents: write
1414
steps:
1515
- name: Checkout code
16-
uses: actions/checkout@v5
16+
uses: actions/checkout@v6
1717
- name: Generate body
1818
run: |
1919
scripts/get_release_description.py | tee release_body.md

0 commit comments

Comments
 (0)