Skip to content

Commit 3515764

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] <[email protected]>
1 parent 5d5b190 commit 3515764

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.github/workflows/build_workflow.yml

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

2828
- if: ${{ steps.skip_check.outputs.should_skip != 'true' }}
2929
name: Checkout Code Repository
30-
uses: actions/checkout@v4
30+
uses: actions/checkout@v5
3131

3232
- if: ${{ steps.skip_check.outputs.should_skip != 'true' }}
3333
name: Set up Python 3.10
@@ -69,7 +69,7 @@ jobs:
6969
paths_ignore: ${{ env.PATHS_IGNORE }}
7070

7171
- if: ${{ steps.skip_check.outputs.should_skip != 'true' }}
72-
uses: actions/checkout@v4
72+
uses: actions/checkout@v5
7373

7474
- if: ${{ steps.skip_check.outputs.should_skip != 'true' }}
7575
name: Cache Conda

.github/workflows/docs_workflow.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
shell: bash -l {0}
1919
timeout-minutes: 20
2020
steps:
21-
- uses: actions/checkout@v4
21+
- uses: actions/checkout@v5
2222
with:
2323
persist-credentials: false
2424
fetch-depth: 0

.github/workflows/pre_commit_update_workflow.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
auto-update:
2222
runs-on: ubuntu-latest
2323
steps:
24-
- uses: actions/checkout@v4
24+
- uses: actions/checkout@v5
2525

2626
- name: Set up Conda Environment
2727
uses: mamba-org/setup-micromamba@v2

0 commit comments

Comments
 (0)