Skip to content

Commit 3d0cbb2

Browse files
Update actions/checkout action to v5
1 parent b0c9cf1 commit 3d0cbb2

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.github/workflows/cd.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jobs:
77
deploy:
88
runs-on: ubuntu-latest
99
steps:
10-
- uses: actions/checkout@v4
10+
- uses: actions/checkout@v5
1111
- name: Set up Python
1212
uses: actions/setup-python@v5
1313
with:

.github/workflows/sphinx.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
runs-on: ubuntu-latest
1111
steps:
1212
- name: Checkout
13-
uses: actions/checkout@v4
13+
uses: actions/checkout@v5
1414
- name: Install and Build HTML
1515
run: |
1616
pip install --upgrade pip

.github/workflows/tox_ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ jobs:
44
black:
55
runs-on: ubuntu-latest
66
steps:
7-
- uses: actions/checkout@v4
7+
- uses: actions/checkout@v5
88
- name: Run black
99
uses: actions/setup-python@v5
1010
with:
@@ -19,7 +19,7 @@ jobs:
1919
matrix:
2020
python: ['3.9', '3.10', '3.11']
2121
steps:
22-
- uses: actions/checkout@v4
22+
- uses: actions/checkout@v5
2323
- name: Setup Python
2424
uses: actions/setup-python@v5
2525
with:

0 commit comments

Comments
 (0)