Skip to content

Commit 4eb8b64

Browse files
Bump actions/checkout from 4 to 5 (#775)
Bumps [actions/checkout](https://github.com/actions/checkout) from 4 to 5. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v4...v5) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '5' 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> Co-authored-by: Davis Bennett <[email protected]>
1 parent 4613723 commit 4eb8b64

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

.github/workflows/ci.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222

2323
steps:
2424
- name: Checkout source
25-
uses: actions/checkout@v4
25+
uses: actions/checkout@v5
2626
with:
2727
submodules: recursive
2828
fetch-depth: 0 # required for version resolution
@@ -78,7 +78,7 @@ jobs:
7878

7979
steps:
8080
- name: Checkout source
81-
uses: actions/checkout@v4
81+
uses: actions/checkout@v5
8282
with:
8383
submodules: recursive
8484
fetch-depth: 0 # required for version resolution

.github/workflows/codeql-analysis.yml

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

3333
steps:
3434
- name: Checkout repository
35-
uses: actions/checkout@v4
35+
uses: actions/checkout@v5
3636

3737
# Initializes the CodeQL tools for scanning.
3838
- name: Initialize CodeQL

.github/workflows/wheel.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
# note: CIBW_ENVIRONMENT is now set in pyproject.toml
2929

3030
steps:
31-
- uses: actions/checkout@v4
31+
- uses: actions/checkout@v5
3232
with:
3333
submodules: true
3434
fetch-depth: 0 # required for version resolution for nightly wheels
@@ -44,7 +44,7 @@ jobs:
4444
name: Build source distribution
4545
runs-on: ubuntu-latest
4646
steps:
47-
- uses: actions/checkout@v4
47+
- uses: actions/checkout@v5
4848
with:
4949
submodules: true
5050
fetch-depth: 0

0 commit comments

Comments
 (0)