Skip to content

Commit 0f6486b

Browse files
gha: bump actions/checkout to 5.0.0 (#188)
Bumps [actions/checkout](https://github.com/actions/checkout) from 4.2.2 to 5.0.0. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v4.2.2...v5.0.0) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: 5.0.0 dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent d6af016 commit 0f6486b

File tree

4 files changed

+9
-9
lines changed

4 files changed

+9
-9
lines changed

.github/workflows/ci.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ jobs:
4646
languages: ${{ steps.languages.outputs.languages }}
4747
steps:
4848
- name: Check out ${{ github.repository }}
49-
uses: actions/checkout@v5
49+
uses: actions/checkout@v5.0.0
5050

5151
- name: Set up Python 3
5252
uses: actions/setup-python@v6
@@ -71,7 +71,7 @@ jobs:
7171
} >> "$GITHUB_OUTPUT"
7272
7373
- name: Check out branch ${{ steps.version.outputs.current }}
74-
uses: actions/checkout@v5
74+
uses: actions/checkout@v5.0.0
7575
with:
7676
ref: ${{ steps.version.outputs.current }}
7777
path: ${{ steps.version.outputs.current }}
@@ -104,18 +104,18 @@ jobs:
104104

105105
steps:
106106
- name: Check out ${{ github.repository }}
107-
uses: actions/checkout@v5
107+
uses: actions/checkout@v5.0.0
108108

109109
- name: Check out ${{ matrix.cpython_version }} branch of CPython
110-
uses: actions/checkout@v5
110+
uses: actions/checkout@v5.0.0
111111
with:
112112
repository: python/cpython
113113
persist-credentials: false
114114
ref: ${{ matrix.cpython_version }}
115115
path: cpython
116116

117117
- name: Check out ${{ matrix.cpython_version }} branch of ${{ github.repository }}
118-
uses: actions/checkout@v5
118+
uses: actions/checkout@v5.0.0
119119
with:
120120
ref: ${{ matrix.cpython_version }}
121121
path: cpython/Doc/locales

.github/workflows/lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
runs-on: ubuntu-latest
1616

1717
steps:
18-
- uses: actions/checkout@v5
18+
- uses: actions/checkout@v5.0.0
1919
with:
2020
persist-credentials: false
2121
- uses: actions/setup-python@v6

.github/workflows/python-docs-theme.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,12 +37,12 @@ jobs:
3737

3838
steps:
3939
- name: Check out repository
40-
uses: actions/checkout@v4.2.2
40+
uses: actions/checkout@v5.0.0
4141
with:
4242
ref: python-docs-theme
4343

4444
- name: Check out python-docs-theme
45-
uses: actions/checkout@v4.2.2
45+
uses: actions/checkout@v5.0.0
4646
with:
4747
repository: python/python-docs-theme
4848
persist-credentials: false

.github/workflows/updpyver.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
runs-on: ubuntu-latest
2929
steps:
3030
- name: Check out ${{ github.repository }}
31-
uses: actions/checkout@v5
31+
uses: actions/checkout@v5.0.0
3232
with:
3333
fetch-depth: 0
3434

0 commit comments

Comments
 (0)