Skip to content

Commit fe0bad4

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 81e4010 commit fe0bad4

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

.github/workflows/build-container.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
packages: write
2222
steps:
2323
- name: Checkout code
24-
uses: actions/checkout@v4
24+
uses: actions/checkout@v5
2525

2626
- name: Set up QEMU
2727
uses: docker/setup-qemu-action@v3

.github/workflows/lint.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,14 +9,14 @@ jobs:
99
runs-on: ubuntu-latest
1010
name: PR - Shellcheck
1111
steps:
12-
- uses: actions/checkout@v4
12+
- uses: actions/checkout@v5
1313
- uses: ludeeus/action-shellcheck@master
1414

1515
actionlint-pr:
1616
runs-on: ubuntu-latest
1717
name: PR - Actionlint
1818
steps:
19-
- uses: actions/checkout@v4
19+
- uses: actions/checkout@v5
2020
- run: |
2121
echo "::add-matcher::.github/actionlint-matcher.json"
2222
bash <(curl https://raw.githubusercontent.com/rhysd/actionlint/main/scripts/download-actionlint.bash)
@@ -27,14 +27,14 @@ jobs:
2727
runs-on: ubuntu-latest
2828
name: PR - Markdownlint
2929
steps:
30-
- uses: actions/checkout@v4
30+
- uses: actions/checkout@v5
3131
- name: Run markdownlint
3232
uses: actionshub/[email protected]
3333

3434
hadolint-pr:
3535
runs-on: ubuntu-latest
3636
name: PR - Hadolint
3737
steps:
38-
- uses: actions/checkout@v4
38+
- uses: actions/checkout@v5
3939
# Ignores do not work: https://github.com/reviewdog/action-hadolint/issues/35 is resolved
4040
- uses: reviewdog/action-hadolint@v1

0 commit comments

Comments
 (0)