Skip to content

Commit 72d3422

Browse files
Bump actions/checkout from 4 to 5 (#155)
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>
1 parent bb9a137 commit 72d3422

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

.github/workflows/ci.yaml

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 the repository
35-
uses: actions/checkout@v4
35+
uses: actions/checkout@v5
3636
with:
3737
fetch-depth: 0
3838
persist-credentials: false

.github/workflows/nightly.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
outputs:
2121
triggered: ${{ steps.detect-trigger.outputs.trigger-found }}
2222
steps:
23-
- uses: actions/checkout@v4
23+
- uses: actions/checkout@v5
2424
with:
2525
fetch-depth: 2
2626
persist-credentials: false
@@ -51,7 +51,7 @@ jobs:
5151

5252
steps:
5353
- name: checkout the repository
54-
uses: actions/checkout@v4
54+
uses: actions/checkout@v5
5555
with:
5656
# need to fetch all tags to get a correct version
5757
fetch-depth: 0 # fetch all branches and tags
@@ -106,7 +106,7 @@ jobs:
106106

107107
steps:
108108
- name: checkout the repository
109-
uses: actions/checkout@v4
109+
uses: actions/checkout@v5
110110
with:
111111
persist-credentials: false
112112
- name: setup python

.github/workflows/publish.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
id-token: write
1515
steps:
1616
- name: Checkout
17-
uses: actions/checkout@v4
17+
uses: actions/checkout@v5
1818
with:
1919
persist-credentials: false
2020
- name: Set up Python

0 commit comments

Comments
 (0)