Skip to content

Commit 93526a6

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 f772797 commit 93526a6

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
fetch-depth: 0 # setuptools-scm needs to access git tags
@@ -67,7 +67,7 @@ jobs:
6767
if: ${{ github.actor != 'dependabot[bot]' }} # dependabot cannot access PAT
6868
runs-on: ubuntu-latest
6969
steps:
70-
- uses: actions/checkout@v4
70+
- uses: actions/checkout@v5
7171
with:
7272
token: ${{ secrets.PERSONAL_ACCESS_TOKEN }}
7373
ref: ${{ github.ref }} # dont lock to sha (action needs to push)
@@ -85,7 +85,7 @@ jobs:
8585
py-dependencies:
8686
runs-on: ubuntu-latest
8787
steps:
88-
- uses: actions/checkout@v4
88+
- uses: actions/checkout@v5
8989
with:
9090
token: ${{ secrets.PERSONAL_ACCESS_TOKEN }}
9191
ref: ${{ github.ref }} # dont lock to sha (action needs to push)

0 commit comments

Comments
 (0)