Skip to content

Commit 6c6cc5c

Browse files
Bump actions/checkout from 5 to 6
Bumps [actions/checkout](https://github.com/actions/checkout) from 5 to 6. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v5...v6) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent 6755596 commit 6c6cc5c

File tree

5 files changed

+8
-8
lines changed

5 files changed

+8
-8
lines changed

.github/workflows/anchore-analysis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
runs-on: ubuntu-24.04
2121
steps:
2222
- name: Checkout the code
23-
uses: actions/checkout@v5
23+
uses: actions/checkout@v6
2424
- name: Build the Docker image
2525
run: docker build . --file Dockerfile --tag localbuild/testimage:latest
2626
- name: Run the Anchore scan action itself with GitHub Advanced Security code scanning integration enabled

.github/workflows/dependency-review.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
runs-on: ubuntu-24.04
1111
steps:
1212
- name: 'Checkout Repository'
13-
uses: actions/checkout@v5
13+
uses: actions/checkout@v6
1414
- name: 'Dependency Review'
1515
uses: actions/dependency-review-action@v4
1616
with:

.github/workflows/lint.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,29 +10,29 @@ jobs:
1010
name: dockerfile
1111
runs-on: ubuntu-24.04
1212
steps:
13-
- uses: actions/checkout@v5
13+
- uses: actions/checkout@v6
1414
- name: Run hadolint
1515
uses: hadolint/hadolint-action@v3.3.0
1616

1717
markdownlint:
1818
name: markdown
1919
runs-on: ubuntu-24.04
2020
steps:
21-
- uses: actions/checkout@v5
21+
- uses: actions/checkout@v6
2222
- name: Run markdownlint
2323
uses: DavidAnson/markdownlint-cli2-action@v21
2424

2525
actionlint:
2626
runs-on: ubuntu-24.04
2727
steps:
28-
- uses: actions/checkout@v5
28+
- uses: actions/checkout@v6
2929
- uses: reviewdog/action-actionlint@v1
3030

3131
yamllint:
3232
name: Yamllint
3333
runs-on: ubuntu-24.04
3434
steps:
35-
- uses: actions/checkout@v5
35+
- uses: actions/checkout@v6
3636
- name: Run Yamllint
3737
uses: frenck/action-yamllint@v1.5.0
3838
with:

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
contents: write
1414
runs-on: ubuntu-24.04
1515
steps:
16-
- uses: actions/checkout@v5
16+
- uses: actions/checkout@v6
1717
with:
1818
fetch-depth: 0
1919
- name: Bump version and push tag

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
build:
1212
runs-on: ubuntu-24.04
1313
steps:
14-
- uses: actions/checkout@v5
14+
- uses: actions/checkout@v6
1515
- name: Docker build
1616
run: |
1717
docker build .

0 commit comments

Comments
 (0)