Skip to content

Commit 8e7a540

Browse files
Bump actions/checkout from 5 to 6 (#527)
1 parent 507e993 commit 8e7a540

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

.github/workflows/docs.yml

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

4747
# Checks-out your repository under $GITHUB_WORKSPACE
4848
- name: Checkout
49-
uses: actions/checkout@v5
49+
uses: actions/checkout@v6
5050
with:
5151
# Need to fetch more than the last commit so that setuptools-scm can
5252
# 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@v5
131+
uses: actions/checkout@v6
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@v5
141+
uses: actions/checkout@v6
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
@@ -33,7 +33,7 @@ jobs:
3333
steps:
3434
# Checks-out your repository under $GITHUB_WORKSPACE
3535
- name: Checkout
36-
uses: actions/checkout@v5
36+
uses: actions/checkout@v6
3737
with:
3838
# Need to fetch more than the last commit so that setuptools_scm can
3939
# create the correct version string. If the number of commits since
@@ -100,7 +100,7 @@ jobs:
100100

101101
steps:
102102
- name: Checkout
103-
uses: actions/checkout@v5
103+
uses: actions/checkout@v6
104104
with:
105105
# The GitHub token is preserved by default but this job doesn't need
106106
# to be able to push to GitHub.

.github/workflows/style.yml

Lines changed: 2 additions & 2 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@v5
23+
uses: actions/checkout@v6
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@v5
45+
uses: actions/checkout@v6
4646
with:
4747
persist-credentials: false
4848

.github/workflows/test.yml

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

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

0 commit comments

Comments
 (0)