Skip to content

Commit 26465aa

Browse files
authored
Merge pull request #98 from manicmaniac/renovate/actions-checkout-5.x
Update actions/checkout action to v5
2 parents 272e676 + 90e4b4f commit 26465aa

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

.github/workflows/benchmark.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
benchmark:
1212
runs-on: ubuntu-24.04
1313
steps:
14-
- uses: actions/checkout@v4
14+
- uses: actions/checkout@v5
1515
- uses: actions/setup-python@v5
1616
with:
1717
python-version: '3.13'

.github/workflows/release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
build-sdist:
1515
runs-on: ubuntu-24.04
1616
steps:
17-
- uses: actions/checkout@v4
17+
- uses: actions/checkout@v5
1818
- uses: actions/setup-python@v5
1919
with:
2020
python-version: '3.13'
@@ -41,7 +41,7 @@ jobs:
4141
- 'pypy-3.9'
4242
- 'pypy-3.10'
4343
steps:
44-
- uses: actions/checkout@v4
44+
- uses: actions/checkout@v5
4545
- uses: actions/setup-python@v5
4646
with:
4747
python-version: "${{ matrix.python-version }}"
@@ -67,7 +67,7 @@ jobs:
6767
- pp39-pypy39_pp73
6868
- pp310-pypy310_pp73
6969
steps:
70-
- uses: actions/checkout@v4
70+
- uses: actions/checkout@v5
7171
- run: pip install setuptools
7272
- run: /opt/python/${{ matrix.python-version }}/bin/pip wheel .
7373
- run: auditwheel repair arc4-*-linux*.whl --plat manylinux_2_28_x86_64

.github/workflows/test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
- 'pypy-3.9'
1616
- 'pypy-3.10'
1717
steps:
18-
- uses: actions/checkout@v4
18+
- uses: actions/checkout@v5
1919
- uses: actions/setup-python@v5
2020
with:
2121
python-version: "${{ matrix.python-version }}"
@@ -56,7 +56,7 @@ jobs:
5656
lint:
5757
runs-on: ubuntu-latest
5858
steps:
59-
- uses: actions/checkout@v4
59+
- uses: actions/checkout@v5
6060
- name: clang-format
6161
run: clang-format --Werror --dry-run arc4.c
6262
- run: pip install . flake8 mypy pygments restructuredtext_lint

0 commit comments

Comments
 (0)