Skip to content

Commit c87804b

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 50954f2 commit c87804b

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

.github/workflows/notebooks.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
run:
3737
shell: bash -leo pipefail {0}
3838
steps:
39-
- uses: actions/checkout@v4
39+
- uses: actions/checkout@v5
4040
- uses: ./.github/actions/setup
4141
- name: Check for changes
4242
run: ./extras/scripts/check_change.sh ${{ matrix.notebook }}

.github/workflows/publish.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
run:
1919
shell: bash -leo pipefail {0}
2020
steps:
21-
- uses: actions/checkout@v4
21+
- uses: actions/checkout@v5
2222
with:
2323
fetch-depth: 0
2424
- uses: ./.github/actions/setup
@@ -78,7 +78,7 @@ jobs:
7878
- name: Install dependencies
7979
run: gem install html-proofer
8080

81-
- uses: actions/checkout@v4
81+
- uses: actions/checkout@v5
8282
- uses: actions/download-artifact@v5
8383
with:
8484
name: ${{ matrix.school }}

.github/workflows/tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jobs:
77
name: Shellcheck
88
runs-on: ubuntu-latest
99
steps:
10-
- uses: actions/checkout@v4
10+
- uses: actions/checkout@v5
1111
- name: Run ShellCheck
1212
uses: ludeeus/action-shellcheck@master
1313

@@ -20,7 +20,7 @@ jobs:
2020
run:
2121
shell: bash -leo pipefail {0}
2222
steps:
23-
- uses: actions/checkout@v4
23+
- uses: actions/checkout@v5
2424
- uses: ./.github/actions/setup
2525
- name: Run tests
2626
run: make test

0 commit comments

Comments
 (0)