Skip to content

Commit 843d48a

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 b6475bd commit 843d48a

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
@@ -31,7 +31,7 @@ jobs:
3131

3232
- if: ${{ steps.skip_check.outputs.should_skip != 'true' }}
3333
name: Checkout Code Repository
34-
uses: actions/checkout@v4
34+
uses: actions/checkout@v5
3535

3636
- if: ${{ steps.skip_check.outputs.should_skip != 'true' }}
3737
name: Set up Python ${{ env.PYTHON_VERSION }}
@@ -73,7 +73,7 @@ jobs:
7373
paths_ignore: ${{ env.PATHS_IGNORE }}
7474

7575
- if: ${{ steps.skip_check.outputs.should_skip != 'true' }}
76-
uses: actions/checkout@v4
76+
uses: actions/checkout@v5
7777

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

.github/workflows/docs_workflow.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
shell: bash -l {0}
2020
timeout-minutes: 20
2121
steps:
22-
- uses: actions/checkout@v4
22+
- uses: actions/checkout@v5
2323
with:
2424
persist-credentials: false
2525
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)