Skip to content

Commit 67c6f1f

Browse files
⬆️ deps: Update actions/checkout action to v5
1 parent ef12fb0 commit 67c6f1f

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

.github/workflows/lint-and-fmt.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
name: lint and fmt - Python ${{ matrix.python-version }} on ${{ matrix.architecture }}
1919
steps:
2020
- name: Checkout
21-
uses: actions/checkout@v4
21+
uses: actions/checkout@v5
2222

2323
- name: Install prettier
2424
run: |

.github/workflows/release.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
target: [x86_64, x86, aarch64]
2121
name: Ubuntu, ${{ matrix.target }}, Python ${{ matrix.python-version }}
2222
steps:
23-
- uses: actions/checkout@v4
23+
- uses: actions/checkout@v5
2424
- uses: actions/setup-python@v6
2525
with:
2626
python-version: ${{ matrix.python-version }}
@@ -45,7 +45,7 @@ jobs:
4545
target: [x64, x86]
4646
name: Windows, ${{ matrix.target }}, Python ${{ matrix.python-version }}
4747
steps:
48-
- uses: actions/checkout@v4
48+
- uses: actions/checkout@v5
4949
- uses: actions/setup-python@v6
5050
with:
5151
python-version: ${{ matrix.python-version }}
@@ -70,7 +70,7 @@ jobs:
7070
target: [x86_64, aarch64]
7171
name: macOS, ${{ matrix.target }}, Python ${{ matrix.python-version }}
7272
steps:
73-
- uses: actions/checkout@v4
73+
- uses: actions/checkout@v5
7474
- uses: actions/setup-python@v6
7575
with:
7676
python-version: ${{ matrix.python-version }}
@@ -89,7 +89,7 @@ jobs:
8989
sdist:
9090
runs-on: ubuntu-latest
9191
steps:
92-
- uses: actions/checkout@v4
92+
- uses: actions/checkout@v5
9393
- name: Build sdist
9494
uses: PyO3/maturin-action@v1
9595
with:

.github/workflows/unit-test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
name: unittest - Python ${{ matrix.python-version }} on ${{ matrix.architecture }}
1818
steps:
1919
- name: Checkout
20-
uses: actions/checkout@v4
20+
uses: actions/checkout@v5
2121

2222
- name: Install maturin
2323
run: pipx install maturin

0 commit comments

Comments
 (0)