Skip to content

Commit e41319e

Browse files
[gh-actions](deps): 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 a585d8b commit e41319e

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

.github/workflows/lint.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jobs:
77
runs-on: ubuntu-latest
88
steps:
99
- name: Set up environment
10-
uses: actions/checkout@v4
10+
uses: actions/checkout@v5
1111
with: # no need for the history
1212
fetch-depth: 1
1313

@@ -27,7 +27,7 @@ jobs:
2727
lint-with-black:
2828
runs-on: ubuntu-latest
2929
steps:
30-
- uses: actions/checkout@v4
30+
- uses: actions/checkout@v5
3131
- uses: psf/black@stable
3232
with:
3333
options: "--check --diff --verbose"

.github/workflows/shellcheck.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
run: |
1414
sudo apt-get update -qq
1515
sudo apt-get install shellcheck
16-
- uses: actions/checkout@v4
16+
- uses: actions/checkout@v5
1717
- name: Run shellcheck
1818
run: |
1919
git grep -l -E '#!/bin/(bash|sh)' | xargs shellcheck

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
sudo apt-get update -qq
2929
sudo apt-get install eatmydata
3030
sudo eatmydata apt-get install git-annex-standalone
31-
- uses: actions/checkout@v4
31+
- uses: actions/checkout@v5
3232
with:
3333
fetch-depth: 0
3434
- name: Set up Python 3.9

.github/workflows/type_check.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ jobs:
66
mypy:
77
runs-on: ubuntu-latest
88
steps:
9-
- uses: actions/checkout@v4
9+
- uses: actions/checkout@v5
1010
with:
1111
fetch-depth: 0 # Tags are needed to install DL-Registry
1212
- uses: actions/setup-python@v5

0 commit comments

Comments
 (0)