Skip to content

Commit 4c2dcdf

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 e4d2539 commit 4c2dcdf

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
run: python3 -m pip install --user "tox>=4.0.0"
2929

3030
- name: Check out src from Git
31-
uses: actions/checkout@v4
31+
uses: actions/checkout@v5
3232
with:
3333
fetch-depth: 0 # needed by setuptools-scm
3434
submodules: true

.github/workflows/tox.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ jobs:
5151
matrix: ${{ fromJson(needs.prepare.outputs.matrix) }}
5252

5353
steps:
54-
- uses: actions/checkout@v4
54+
- uses: actions/checkout@v5
5555
with:
5656
fetch-depth: 0 # needed by setuptools-scm
5757
submodules: true
@@ -123,7 +123,7 @@ jobs:
123123

124124
steps:
125125
# checkout needed for codecov action which needs codecov.yml file
126-
- uses: actions/checkout@v4
126+
- uses: actions/checkout@v5
127127

128128
- name: Set up Python # likely needed for coverage
129129
uses: actions/setup-python@v5

0 commit comments

Comments
 (0)