Skip to content

Commit ce3fb72

Browse files
Bump actions/checkout from 4 to 5
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] <support@github.com>
1 parent 8d1ad49 commit ce3fb72

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

.github/workflows/cicd.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
outputs:
1313
matrix: ${{ steps.versions.outputs.matrix }}
1414
steps:
15-
- uses: actions/checkout@v4
15+
- uses: actions/checkout@v5
1616
with:
1717
ref: ${{ github.sha }} # lock to triggered commit ('github.ref' is dynamic)
1818
- id: versions
@@ -31,7 +31,7 @@ jobs:
3131
matrix:
3232
py3: ${{ fromJSON(needs.py-versions.outputs.matrix) }}
3333
steps:
34-
- uses: actions/checkout@v4
34+
- uses: actions/checkout@v5
3535
with:
3636
ref: ${{ github.sha }} # lock to triggered commit ('github.ref' is dynamic)
3737
- uses: actions/setup-python@v5
@@ -49,7 +49,7 @@ jobs:
4949
matrix:
5050
py3: ${{ fromJSON(needs.py-versions.outputs.matrix) }}
5151
steps:
52-
- uses: actions/checkout@v4
52+
- uses: actions/checkout@v5
5353
with:
5454
ref: ${{ github.sha }} # lock to triggered commit ('github.ref' is dynamic)
5555
- uses: actions/setup-python@v5
@@ -66,7 +66,7 @@ jobs:
6666
if: ${{ github.actor != 'dependabot[bot]' }} # dependabot cannot access PAT
6767
runs-on: ubuntu-latest
6868
steps:
69-
- uses: actions/checkout@v4
69+
- uses: actions/checkout@v5
7070
with:
7171
token: ${{ secrets.PERSONAL_ACCESS_TOKEN }}
7272
ref: ${{ github.ref }} # dont lock to sha (action needs to push)
@@ -84,7 +84,7 @@ jobs:
8484
py-dependencies:
8585
runs-on: ubuntu-latest
8686
steps:
87-
- uses: actions/checkout@v4
87+
- uses: actions/checkout@v5
8888
with:
8989
token: ${{ secrets.PERSONAL_ACCESS_TOKEN }}
9090
ref: ${{ github.ref }} # dont lock to sha (action needs to push)

0 commit comments

Comments
 (0)