Skip to content

Commit 2f3f971

Browse files
ci(deps): bump actions/checkout from 4 to 5 (#1504)
Bumps [actions/checkout](https://github.com/actions/checkout) from 4 to 5. - [Release notes](https://github.com/actions/checkout/releases) - [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]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent 9ed1939 commit 2f3f971

16 files changed

+31
-31
lines changed

.github/workflows/benchmark.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
runs-on: ${{ matrix.os }}
3131
timeout-minutes: 30
3232
steps:
33-
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
33+
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
3434
with:
3535
# We need to get all the git tags to make version injection work. See VERSION in Makefile for more detail.
3636
fetch-depth: 0

.github/workflows/build-and-test-deb.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ jobs:
7474
- name: Clean ubuntu runner workspace
7575
run: |
7676
rm -rf ${{ github.workspace }}/*
77-
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
77+
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
7878
with:
7979
ref: ${{ inputs.tag }}
8080
fetch-depth: 0

.github/workflows/build-and-test-msi.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ jobs:
7676
with:
7777
go-version: ${{ env.GO_VERSION }}
7878
cache: false
79-
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
79+
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
8080
with:
8181
ref: ${{ needs.get-tag-name.outputs.tag }}
8282
fetch-depth: 0
@@ -186,7 +186,7 @@ jobs:
186186
with:
187187
go-version: ${{ env.GO_VERSION }}
188188
cache: false
189-
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
189+
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
190190
with:
191191
ref: ${{ needs.get-tag-name.outputs.tag }}
192192
fetch-depth: 0

.github/workflows/build-pkg.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ jobs:
4444
run: |
4545
rm -rf ${{ github.workspace }}/*
4646
shell: zsh {0}
47-
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
47+
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
4848
with:
4949
ref: ${{ inputs.tag }}
5050
fetch-depth: 0

.github/workflows/ci-docs.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ jobs:
4646
timeout-minutes: 2
4747
steps:
4848
- name: Pull latest awslabs/git-secrets repo
49-
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
49+
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
5050
with:
5151
repository: awslabs/git-secrets
5252
ref: 1.3.0
@@ -55,7 +55,7 @@ jobs:
5555
- name: Install git secrets from source
5656
run: sudo make install
5757
working-directory: git-secrets
58-
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
58+
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
5959
- name: Scan repository for git secrets
6060
run: |
6161
git secrets --register-aws
@@ -120,7 +120,7 @@ jobs:
120120
runs-on: ubuntu-latest
121121
timeout-minutes: 2
122122
steps:
123-
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
123+
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
124124
- uses: avto-dev/markdown-lint@04d43ee9191307b50935a753da3b775ab695eceb # v1.5.0
125125
with:
126126
args: '**/*.md'

.github/workflows/ci.yaml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ jobs:
5555
timeout-minutes: 2
5656
steps:
5757
- name: Pull latest awslabs/git-secrets repo
58-
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
58+
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
5959
with:
6060
repository: awslabs/git-secrets
6161
ref: 1.3.0
@@ -64,7 +64,7 @@ jobs:
6464
- name: Install git secrets from source
6565
run: sudo make install
6666
working-directory: git-secrets
67-
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
67+
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
6868
- name: Scan repository for git secrets
6969
run: |
7070
git secrets --register-aws
@@ -77,7 +77,7 @@ jobs:
7777
outputs:
7878
tag: ${{ steps.latest-tag.outputs.tag }}
7979
steps:
80-
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
80+
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
8181
with:
8282
fetch-depth: 0
8383
- name: 'Get the latest tag'
@@ -91,7 +91,7 @@ jobs:
9191
runs-on: ${{ matrix.os }}
9292
timeout-minutes: 5
9393
steps:
94-
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
94+
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
9595
- uses: actions/setup-go@d35c59abb061a4a6fb18e82ac0862c26744d6ab5 # v5.5.0
9696
with:
9797
go-version: ${{ env.GO_VERSION }}
@@ -110,7 +110,7 @@ jobs:
110110
run: |
111111
git config --global core.autocrlf false
112112
git config --global core.eol lf
113-
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
113+
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
114114
- uses: actions/setup-go@d35c59abb061a4a6fb18e82ac0862c26744d6ab5 # v5.5.0
115115
with:
116116
go-version: ${{ env.GO_VERSION }}
@@ -122,7 +122,7 @@ jobs:
122122
runs-on: ubuntu-latest
123123
timeout-minutes: 5
124124
steps:
125-
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
125+
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
126126
- uses: actions/setup-go@d35c59abb061a4a6fb18e82ac0862c26744d6ab5 # v5.5.0
127127
with:
128128
go-version: ${{ env.GO_VERSION }}
@@ -154,7 +154,7 @@ jobs:
154154
runs-on: ubuntu-latest
155155
timeout-minutes: 5
156156
steps:
157-
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
157+
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
158158
- name: Run ShellCheck
159159
uses: ludeeus/action-shellcheck@00cae500b08a931fb5698e11e79bfbd38e612a38 # 2.0.0
160160
with:
@@ -164,7 +164,7 @@ jobs:
164164
runs-on: ubuntu-latest
165165
timeout-minutes: 1
166166
steps:
167-
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
167+
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
168168
- uses: actions/setup-go@d35c59abb061a4a6fb18e82ac0862c26744d6ab5 # v5.5.0
169169
with:
170170
go-version: ${{ env.GO_VERSION }}
@@ -176,7 +176,7 @@ jobs:
176176
runs-on: ubuntu-latest
177177
timeout-minutes: 1
178178
steps:
179-
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
179+
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
180180
- uses: actions/setup-go@d35c59abb061a4a6fb18e82ac0862c26744d6ab5 # v5.5.0
181181
with:
182182
go-version: ${{ env.GO_VERSION }}
@@ -245,7 +245,7 @@ jobs:
245245
runs-on: ubuntu-latest
246246
timeout-minutes: 5
247247
steps:
248-
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
248+
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
249249
- uses: avto-dev/markdown-lint@04d43ee9191307b50935a753da3b775ab695eceb # v1.5.0
250250
with:
251251
args: '**/*.md'

.github/workflows/e2e-linux.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ jobs:
5252
run: |
5353
echo "ACTIONS_ALLOW_USE_UNSECURE_NODE_VERSION=true" >> $GITHUB_ENV
5454
echo "ACTIONS_RUNNER_FORCE_ACTIONS_NODE_VERSION=node16" >> $GITHUB_ENV
55-
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
55+
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
5656
with:
5757
# We need to get all the git tags to make version injection work. See VERSION in Makefile for more detail.
5858
fetch-depth: 0

.github/workflows/e2e-macos.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ jobs:
4545
- name: Clean macOS runner workspace
4646
run: |
4747
rm -rf ${{ github.workspace }}/*
48-
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
48+
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
4949
with:
5050
# We need to get all the git tags to make version injection work. See VERSION in Makefile for more detail.
5151
fetch-depth: 0

.github/workflows/e2e-ubuntu.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
outputs:
2222
tag: ${{ steps.latest-tag.outputs.tag }}
2323
steps:
24-
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
24+
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
2525
with:
2626
fetch-depth: 0
2727
- name: 'Get the latest tag'
@@ -96,7 +96,7 @@ jobs:
9696
sudo df -h /tmp
9797
sudo du -chx --max-depth=1
9898
sudo du -chx --max-depth=1 /tmp
99-
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
99+
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
100100
with:
101101
# We need to get all the git tags to make version injection work. See VERSION in Makefile for more detail.
102102
fetch-depth: 0

.github/workflows/e2e-windows.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ jobs:
4949
run: |
5050
takeown /F C:\actions-runner\_work\finch /R
5151
Remove-Item C:\actions-runner\_work\finch\finch -Recurse -Force -ErrorAction Ignore
52-
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
52+
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
5353
with:
5454
# We need to get all the git tags to make version injection work. See VERSION in Makefile for more detail.
5555
fetch-depth: 0

0 commit comments

Comments
 (0)