Skip to content

Commit 22e05a4

Browse files
Bump actions/checkout from 4 to 5 (#479)
1 parent f84297f commit 22e05a4

File tree

4 files changed

+9
-9
lines changed

4 files changed

+9
-9
lines changed

.github/workflows/docs.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ jobs:
4242

4343
# Checks-out your repository under $GITHUB_WORKSPACE
4444
- name: Checkout
45-
uses: actions/checkout@v4
45+
uses: actions/checkout@v5
4646
with:
4747
# Need to fetch more than the last commit so that setuptools-scm can
4848
# create the correct version string. If the number of commits since
@@ -128,7 +128,7 @@ jobs:
128128

129129
steps:
130130
- name: Checkout
131-
uses: actions/checkout@v4
131+
uses: actions/checkout@v5
132132

133133
# Fetch the built docs from the "build" job
134134
- name: Download HTML documentation artifact
@@ -138,7 +138,7 @@ jobs:
138138
path: doc/_build/html
139139

140140
- name: Checkout the gh-pages branch in a separate folder
141-
uses: actions/checkout@v4
141+
uses: actions/checkout@v5
142142
with:
143143
ref: gh-pages
144144
# Checkout to this folder instead of the current one

.github/workflows/pypi.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
steps:
3030
# Checks-out your repository under $GITHUB_WORKSPACE
3131
- name: Checkout
32-
uses: actions/checkout@v4
32+
uses: actions/checkout@v5
3333
with:
3434
# Need to fetch more than the last commit so that setuptools_scm can
3535
# create the correct version string. If the number of commits since
@@ -98,7 +98,7 @@ jobs:
9898

9999
steps:
100100
- name: Checkout
101-
uses: actions/checkout@v4
101+
uses: actions/checkout@v5
102102
with:
103103
# The GitHub token is preserved by default but this job doesn't need
104104
# to be able to push to GitHub.

.github/workflows/style.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
runs-on: ubuntu-latest
2121
steps:
2222
- name: Checkout
23-
uses: actions/checkout@v4
23+
uses: actions/checkout@v5
2424
with:
2525
persist-credentials: false
2626

@@ -42,7 +42,7 @@ jobs:
4242
runs-on: ubuntu-latest
4343
steps:
4444
- name: Checkout
45-
uses: actions/checkout@v4
45+
uses: actions/checkout@v5
4646
with:
4747
persist-credentials: false
4848

@@ -64,7 +64,7 @@ jobs:
6464
runs-on: ubuntu-latest
6565
steps:
6666
- name: Checkout
67-
uses: actions/checkout@v4
67+
uses: actions/checkout@v5
6868
with:
6969
persist-credentials: false
7070

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ jobs:
6868

6969
# Checks-out your repository under $GITHUB_WORKSPACE
7070
- name: Checkout
71-
uses: actions/checkout@v4
71+
uses: actions/checkout@v5
7272
with:
7373
# Need to fetch more than the last commit so that setuptools-scm can
7474
# create the correct version string. If the number of commits since

0 commit comments

Comments
 (0)