Skip to content

Commit 41b468e

Browse files
build(deps): bump actions/checkout from 2 to 6
Bumps [actions/checkout](https://github.com/actions/checkout) from 2 to 6. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v2...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 9c4eea1 commit 41b468e

File tree

6 files changed

+10
-10
lines changed

6 files changed

+10
-10
lines changed

.github/workflows/build.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
pkg-version: ${{ steps.get-product-version.outputs.pkg-version }}
2020
shared-ldflags: ${{ steps.shared-ldflags.outputs.shared-ldflags }}
2121
steps:
22-
- uses: actions/checkout@v2
22+
- uses: actions/checkout@v6
2323
- name: get product version
2424
id: get-product-version
2525
run: |
@@ -46,7 +46,7 @@ jobs:
4646
filepath: ${{ steps.generate-metadata-file.outputs.filepath }}
4747
steps:
4848
- name: 'Checkout directory'
49-
uses: actions/checkout@v2
49+
uses: actions/checkout@v6
5050
- name: Generate metadata file
5151
id: generate-metadata-file
5252
uses: hashicorp/actions-generate-metadata@main
@@ -78,7 +78,7 @@ jobs:
7878

7979
name: Go ${{ matrix.go }} ${{ matrix.goos }} ${{ matrix.goarch }} build
8080
steps:
81-
- uses: actions/checkout@v2
81+
- uses: actions/checkout@v6
8282

8383
- name: Setup go
8484
uses: actions/setup-go@v2
@@ -178,7 +178,7 @@ jobs:
178178

179179
name: Go ${{ matrix.go }} ${{ matrix.goos }} ${{ matrix.goarch }} build
180180
steps:
181-
- uses: actions/checkout@v2
181+
- uses: actions/checkout@v6
182182

183183
- name: Setup go
184184
uses: actions/setup-go@v2
@@ -241,7 +241,7 @@ jobs:
241241
version: ${{needs.get-product-version.outputs.product-version}}
242242

243243
steps:
244-
- uses: actions/checkout@v2
244+
- uses: actions/checkout@v6
245245
- name: Set up QEMU
246246
uses: docker/setup-qemu-action@v1
247247
with:

.github/workflows/changelog-checker.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
runs-on: ubuntu-latest
1818

1919
steps:
20-
- uses: actions/checkout@v2
20+
- uses: actions/checkout@v6
2121
with:
2222
ref: ${{ github.event.pull_request.head.sha }}
2323
fetch-depth: 0 # by default the checkout action doesn't checkout all branches

.github/workflows/issue-comment-created.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
triage:
99
runs-on: ubuntu-latest
1010
steps:
11-
- uses: actions/checkout@v2
11+
- uses: actions/checkout@v6
1212
- uses: actions-ecosystem/action-remove-labels@v1
1313
with:
1414
labels: |

.github/workflows/load-test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
runs-on: ubuntu-latest
1111

1212
steps:
13-
- uses: actions/checkout@v2
13+
- uses: actions/checkout@v6
1414
with:
1515
ref: ${{ github.event.pull_request.head.sha }}
1616
- name: Trigger CircleCI Load Test Pipeline

.github/workflows/pr-metrics-test-checker.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
if: "!contains(github.event.pull_request.labels.*.name, 'pr/no-metrics-test')"
1212
runs-on: ubuntu-latest
1313
steps:
14-
- uses: actions/checkout@v2
14+
- uses: actions/checkout@v6
1515
name: "checkout repo"
1616
with:
1717
ref: ${{ github.event.pull_request.head.sha }}

.github/workflows/website-checker.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
runs-on: ubuntu-latest
2929

3030
steps:
31-
- uses: actions/checkout@v2
31+
- uses: actions/checkout@v6
3232
with:
3333
ref: ${{ github.event.pull_request.head.sha }}
3434
fetch-depth: 0 # by default the checkout action doesn't checkout all branches

0 commit comments

Comments
 (0)