Skip to content

Commit 74ccb80

Browse files
authored
Merge pull request #1040 from bpython/dependabot/github_actions/actions/checkout-5
Bump actions/checkout from 4 to 5
2 parents 42408f9 + 4eb111d commit 74ccb80

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/build.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
- "3.13"
2222
- "pypy-3.10"
2323
steps:
24-
- uses: actions/checkout@v4
24+
- uses: actions/checkout@v5
2525
with:
2626
fetch-depth: 0
2727
- name: Set up Python ${{ matrix.python-version }}

.github/workflows/lint.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
black:
99
runs-on: ubuntu-latest
1010
steps:
11-
- uses: actions/checkout@v4
11+
- uses: actions/checkout@v5
1212
- name: Set up Python
1313
uses: actions/setup-python@v5
1414
- name: Install dependencies
@@ -21,7 +21,7 @@ jobs:
2121
codespell:
2222
runs-on: ubuntu-latest
2323
steps:
24-
- uses: actions/checkout@v4
24+
- uses: actions/checkout@v5
2525
- uses: codespell-project/actions-codespell@master
2626
with:
2727
skip: "*.po,encoding_latin1.py"
@@ -30,7 +30,7 @@ jobs:
3030
mypy:
3131
runs-on: ubuntu-latest
3232
steps:
33-
- uses: actions/checkout@v4
33+
- uses: actions/checkout@v5
3434
- name: Set up Python
3535
uses: actions/setup-python@v5
3636
- name: Install dependencies

0 commit comments

Comments
 (0)