Skip to content

Commit f43f3c2

Browse files
ci(deps): Bump actions/checkout from 4.2.0 to 4.2.2 (runfinch#1149)
Bumps [actions/checkout](https://github.com/actions/checkout) from 4.2.0 to 4.2.2. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@d632683...11bd719) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent c7c5d81 commit f43f3c2

12 files changed

+25
-25
lines changed

.github/workflows/benchmark.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
]
3030
runs-on: ${{ matrix.os }}
3131
steps:
32-
- uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0
32+
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
3333
with:
3434
# We need to get all the git tags to make version injection work. See VERSION in Makefile for more detail.
3535
fetch-depth: 0

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ jobs:
6767
run: |
6868
python -m pip install --upgrade pip
6969
pip install awscli
70-
- uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0
70+
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
7171
with:
7272
ref: ${{ needs.get-tag-name.outputs.tag }}
7373
fetch-depth: 0
@@ -179,7 +179,7 @@ jobs:
179179
run: |
180180
python -m pip install --upgrade pip
181181
pip install awscli
182-
- uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0
182+
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
183183
with:
184184
ref: ${{ needs.get-tag-name.outputs.tag }}
185185
fetch-depth: 0

.github/workflows/build-pkg.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737
]
3838
timeout-minutes: 60
3939
steps:
40-
- uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0
40+
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
4141
with:
4242
ref: ${{ inputs.tag }}
4343
fetch-depth: 0

.github/workflows/ci-docs.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ jobs:
4545
runs-on: ubuntu-latest
4646
steps:
4747
- name: Pull latest awslabs/git-secrets repo
48-
uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0
48+
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
4949
with:
5050
repository: awslabs/git-secrets
5151
ref: 1.3.0
@@ -54,7 +54,7 @@ jobs:
5454
- name: Install git secrets from source
5555
run: sudo make install
5656
working-directory: git-secrets
57-
- uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0
57+
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
5858
- name: Scan repository for git secrets
5959
run: |
6060
git secrets --register-aws
@@ -113,7 +113,7 @@ jobs:
113113
mdlint:
114114
runs-on: ubuntu-latest
115115
steps:
116-
- uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0
116+
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
117117
- uses: avto-dev/markdown-lint@04d43ee9191307b50935a753da3b775ab695eceb # v1.5.0
118118
with:
119119
args: '**/*.md'

.github/workflows/ci.yaml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ jobs:
4949
runs-on: ubuntu-latest
5050
steps:
5151
- name: Pull latest awslabs/git-secrets repo
52-
uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0
52+
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
5353
with:
5454
repository: awslabs/git-secrets
5555
ref: 1.3.0
@@ -58,7 +58,7 @@ jobs:
5858
- name: Install git secrets from source
5959
run: sudo make install
6060
working-directory: git-secrets
61-
- uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0
61+
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
6262
- name: Scan repository for git secrets
6363
run: |
6464
git secrets --register-aws
@@ -70,7 +70,7 @@ jobs:
7070
os: [macos-latest, windows-latest, ubuntu-latest]
7171
runs-on: ${{ matrix.os }}
7272
steps:
73-
- uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0
73+
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
7474
- uses: actions/setup-go@0a12ed9d6a96ab950c8f026ed9f722fe0da7ef32 # v5.0.2
7575
with:
7676
go-version-file: go.mod
@@ -88,7 +88,7 @@ jobs:
8888
run: |
8989
git config --global core.autocrlf false
9090
git config --global core.eol lf
91-
- uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0
91+
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
9292
- uses: actions/setup-go@0a12ed9d6a96ab950c8f026ed9f722fe0da7ef32 # v5.0.2
9393
with:
9494
# Since this repository is not meant to be used as a library,
@@ -101,7 +101,7 @@ jobs:
101101
name: lint
102102
runs-on: ubuntu-latest
103103
steps:
104-
- uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0
104+
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
105105
- uses: actions/setup-go@0a12ed9d6a96ab950c8f026ed9f722fe0da7ef32 # v5.0.2
106106
with:
107107
go-version-file: go.mod
@@ -132,7 +132,7 @@ jobs:
132132
name: ShellCheck
133133
runs-on: ubuntu-latest
134134
steps:
135-
- uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0
135+
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
136136
- name: Run ShellCheck
137137
uses: ludeeus/action-shellcheck@00cae500b08a931fb5698e11e79bfbd38e612a38 # 2.0.0
138138
with:
@@ -141,7 +141,7 @@ jobs:
141141
go-mod-tidy-check:
142142
runs-on: ubuntu-latest
143143
steps:
144-
- uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0
144+
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
145145
- uses: actions/setup-go@0a12ed9d6a96ab950c8f026ed9f722fe0da7ef32 # v5.0.2
146146
with:
147147
go-version-file: go.mod
@@ -152,7 +152,7 @@ jobs:
152152
check-licenses:
153153
runs-on: ubuntu-latest
154154
steps:
155-
- uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0
155+
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
156156
- uses: actions/setup-go@0a12ed9d6a96ab950c8f026ed9f722fe0da7ef32 # v5.0.2
157157
with:
158158
go-version-file: go.mod
@@ -205,7 +205,7 @@ jobs:
205205
mdlint:
206206
runs-on: ubuntu-latest
207207
steps:
208-
- uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0
208+
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
209209
- uses: avto-dev/markdown-lint@04d43ee9191307b50935a753da3b775ab695eceb # v1.5.0
210210
with:
211211
args: '**/*.md'

.github/workflows/e2e-linux.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
"${{ inputs.runner-type }}",
3434
]
3535
steps:
36-
- uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0
36+
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
3737
# checkout uses node version 20, which doesn't run on AL2
3838
if: ${{ ! (startsWith(inputs.os, 'amazon') && inputs.version == '2' ) }}
3939
with:

.github/workflows/e2e-macos.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
"${{ inputs.runner-type }}",
3434
]
3535
steps:
36-
- uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0
36+
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
3737
with:
3838
# We need to get all the git tags to make version injection work. See VERSION in Makefile for more detail.
3939
fetch-depth: 0

.github/workflows/e2e-windows.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838
run: |
3939
takeown /F C:\actions-runner\_work\finch /R
4040
Remove-Item C:\actions-runner\_work\finch\finch -Recurse -Force -ErrorAction Ignore
41-
- uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0
41+
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
4242
with:
4343
# We need to get all the git tags to make version injection work. See VERSION in Makefile for more detail.
4444
fetch-depth: 0

.github/workflows/release-automation.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
outputs:
1111
tag: ${{ steps.latest-tag.outputs.tag }}
1212
steps:
13-
- uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0
13+
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
1414
with:
1515
fetch-depth: 0
1616
- name: 'Get the latest tag'

.github/workflows/sync-submodules-and-deps.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
runs-on: ubuntu-latest
1919
steps:
2020
- name: Checkout code
21-
uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0
21+
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
2222
with:
2323
submodules: recursive
2424
token: ${{ secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)