Skip to content

Commit db6ebe4

Browse files
Bump actions/checkout from 5 to 6 (#59)
1 parent 35e1dec commit db6ebe4

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

.github/workflows/docs.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434
steps:
3535
# Checks-out your repository under $GITHUB_WORKSPACE
3636
- name: Checkout
37-
uses: actions/checkout@v5
37+
uses: actions/checkout@v6
3838
with:
3939
# Need to fetch more than the last commit so that setuptools-scm can
4040
# create the correct version string. If the number of commits since
@@ -96,7 +96,7 @@ jobs:
9696

9797
steps:
9898
- name: Checkout
99-
uses: actions/checkout@v5
99+
uses: actions/checkout@v6
100100

101101
# Fetch the built docs from the "build" job
102102
- name: Download HTML documentation artifact
@@ -106,7 +106,7 @@ jobs:
106106
path: doc/_build/
107107

108108
- name: Checkout the gh-pages branch in a separate folder
109-
uses: actions/checkout@v5
109+
uses: actions/checkout@v6
110110
with:
111111
ref: gh-pages
112112
# 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
@@ -26,7 +26,7 @@ jobs:
2626
runs-on: ubuntu-latest
2727
steps:
2828
- name: Checkout
29-
uses: actions/checkout@v5
29+
uses: actions/checkout@v6
3030
with:
3131
# Need to fetch more than the last commit so that setuptools_scm can
3232
# create the correct version string. If the number of commits since
@@ -89,7 +89,7 @@ jobs:
8989

9090
steps:
9191
- name: Checkout
92-
uses: actions/checkout@v5
92+
uses: actions/checkout@v6
9393
with:
9494
# The GitHub token is preserved by default but this job doesn't need
9595
# to be able to push to GitHub.

.github/workflows/style.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
runs-on: ubuntu-latest
1717
steps:
1818
- name: Checkout
19-
uses: actions/checkout@v5
19+
uses: actions/checkout@v6
2020
with:
2121
persist-credentials: false
2222

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ jobs:
5757
steps:
5858
# Checks-out your repository under $GITHUB_WORKSPACE
5959
- name: Checkout
60-
uses: actions/checkout@v5
60+
uses: actions/checkout@v6
6161
with:
6262
# Need to fetch more than the last commit so that setuptools-scm can
6363
# create the correct version string. If the number of commits since

0 commit comments

Comments
 (0)