Skip to content

Commit c355d10

Browse files
chore(actions): update actions/checkout action to v5
1 parent 9e86555 commit c355d10

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

.github/workflows/merge_main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
version: ${{ steps.version.outputs.value }}
2121

2222
steps:
23-
- uses: actions/checkout@v4
23+
- uses: actions/checkout@v5
2424
with:
2525
token: ${{ secrets.ACCESS_TOKEN }}
2626

.github/workflows/pull_request.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,12 +32,12 @@ jobs:
3232
runs-on: ubuntu-22.04
3333

3434
steps:
35-
- uses: actions/checkout@v4
35+
- uses: actions/checkout@v5
3636

3737
- name: Setup Python 3.10
3838
uses: actions/setup-python@v5
3939
with:
40-
python-version: '3.13'
40+
python-version: '3.10'
4141

4242
- name: Install dependencies
4343
run: |

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,12 +38,12 @@ jobs:
3838
ROOT_DIR: src/${{ matrix.package }}
3939

4040
steps:
41-
- uses: actions/checkout@v4
41+
- uses: actions/checkout@v5
4242

4343
- name: Setup Python
4444
uses: actions/setup-python@v5
4545
with:
46-
python-version: '3.13'
46+
python-version: '3.10'
4747

4848
- name: Install build dependencies
4949
run: python -m pip install --upgrade pip wheel

0 commit comments

Comments
 (0)