Skip to content

Commit b49a690

Browse files
build(deps): 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] <[email protected]>
1 parent fc79f9d commit b49a690

File tree

6 files changed

+10
-10
lines changed

6 files changed

+10
-10
lines changed

.github/workflows/codespell.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ jobs:
66
codespell:
77
runs-on: ubuntu-latest
88
steps:
9-
- uses: actions/checkout@v5
9+
- uses: actions/checkout@v6
1010
- uses: codespell-project/actions-codespell@406322ec52dd7b488e48c1c4b82e2a8b3a1bf630 # v2.1
1111
with:
1212
skip: .git,_artifacts,*.sum

.github/workflows/container-image.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
name: build image
2424
runs-on: "ubuntu-latest"
2525
steps:
26-
- uses: actions/checkout@v5
26+
- uses: actions/checkout@v6
2727

2828
- name: Generate lowercase repository name
2929
run: |

.github/workflows/e2e.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,11 +20,11 @@ jobs:
2020
steps:
2121
- name: Check out branch ${{ github.ref }}
2222
if: ${{ github.event_name == 'push' }}
23-
uses: actions/checkout@v5
23+
uses: actions/checkout@v6
2424

2525
- name: Check out PR ${{ github.event.pull_request.number }}
2626
if: ${{ github.event_name == 'pull_request_target' }}
27-
uses: actions/checkout@v5
27+
uses: actions/checkout@v6
2828
with:
2929
repository: ${{ github.event.pull_request.head.repo.full_name }}
3030
ref: ${{ github.event.pull_request.head.sha }}

.github/workflows/lint.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
name: lint
1313
runs-on: ubuntu-latest
1414
steps:
15-
- uses: actions/checkout@v5
15+
- uses: actions/checkout@v6
1616
- uses: actions/setup-go@v6
1717
with:
1818
go-version-file: go.mod
@@ -26,7 +26,7 @@ jobs:
2626
name: yamllint
2727
runs-on: ubuntu-latest
2828
steps:
29-
- uses: actions/checkout@v5
29+
- uses: actions/checkout@v6
3030
- uses: ibiqlik/action-yamllint@v3
3131
with:
3232
format: github
@@ -35,7 +35,7 @@ jobs:
3535
name: actionlint
3636
runs-on: ubuntu-latest
3737
steps:
38-
- uses: actions/checkout@v5
38+
- uses: actions/checkout@v6
3939
- name: Download actionlint
4040
id: get_actionlint
4141
run: bash <(curl https://raw.githubusercontent.com/rhysd/actionlint/main/scripts/download-actionlint.bash)

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
- name: Set env
1818
run: echo "RELEASE_TAG=${GITHUB_REF##refs/tags/}" >> "$GITHUB_ENV"
1919
- name: checkout code
20-
uses: actions/checkout@v5
20+
uses: actions/checkout@v6
2121
with:
2222
fetch-depth: 1
2323
- name: Set up Go

.github/workflows/test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,15 +27,15 @@ jobs:
2727

2828
- name: checkout PR ${{ github.event.pull_request.number }}
2929
if: github.event_name == 'pull_request_target'
30-
uses: actions/checkout@v5
30+
uses: actions/checkout@v6
3131
with:
3232
fetch-depth: 0 # for SonarQube
3333
repository: ${{ github.event.pull_request.head.repo.full_name }}
3434
ref: ${{ github.event.pull_request.head.sha }}
3535

3636
- name: checkout
3737
if: github.event_name == 'push'
38-
uses: actions/checkout@v5
38+
uses: actions/checkout@v6
3939
with:
4040
fetch-depth: 0 # for SonarQube
4141

0 commit comments

Comments
 (0)