Skip to content

Commit 4b8066a

Browse files
🌱 Bump actions/checkout from 4.1.0 to 4.1.1 (#3580)
Bumps [actions/checkout](https://github.com/actions/checkout) from 4.1.0 to 4.1.1. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@8ade135...b4ffde6) --- 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 1c05571 commit 4b8066a

11 files changed

+20
-20
lines changed

.github/workflows/codeql-analysis.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ jobs:
5757
egress-policy: audit # TODO: change to 'egress-policy: block' after couple of runs
5858

5959
- name: Checkout repository
60-
uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # v4.1.0
60+
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
6161

6262
# Initializes the CodeQL tools for scanning.
6363
- name: Initialize CodeQL

.github/workflows/depsreview.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,6 @@ jobs:
2222
runs-on: ubuntu-latest
2323
steps:
2424
- name: 'Checkout Repository'
25-
uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # v4.1.0
25+
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
2626
- name: 'Dependency Review'
2727
uses: actions/dependency-review-action@6c5ccdad469c9f8a2996bfecaec55a631a347034

.github/workflows/docker.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
docs_only: ${{ steps.docs_only_check.outputs.docs_only }}
3636
steps:
3737
- name: Check out code
38-
uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 #v4.1.0
38+
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 #v4.1.1
3939
with:
4040
fetch-depth: 2 # needed to diff changed files
4141
- id: files
@@ -75,7 +75,7 @@ jobs:
7575
egress-policy: audit # TODO: change to 'egress-policy: block' after couple of runs
7676
- name: Clone the code
7777
if: (needs.docs_only_check.outputs.docs_only != 'true')
78-
uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # v4.1.0
78+
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
7979
- name: Setup Go # needed for some of the Makefile evaluations, even if building happens in Docker
8080
if: (needs.docs_only_check.outputs.docs_only != 'true')
8181
uses: actions/setup-go@93397bea11091df50f3d7e59dc26a7711a8bcfbe # v4.1.0

.github/workflows/gitlab.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737
with:
3838
egress-policy: audit # TODO: change to 'egress-policy: block' after couple of runs
3939
- name: Clone the code
40-
uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # v4.1.0
40+
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
4141
with:
4242
ref: ${{ github.event.pull_request.head.sha || github.sha }} # head SHA if PR, else fallback to push SHA
4343
- name: Setup Go

.github/workflows/goreleaser.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jobs:
3939
egress-policy: audit # TODO: change to 'egress-policy: block' after couple of runs
4040

4141
- name: Checkout
42-
uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # v4.1.0
42+
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
4343
with:
4444
fetch-depth: 0
4545
- name: Set up Go

.github/workflows/integration.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ jobs:
4848
with:
4949
egress-policy: audit # TODO: change to 'egress-policy: block' after couple of runs
5050
- name: Clone the code
51-
uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # v4.1.0
51+
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
5252
with:
5353
ref: ${{ github.event.pull_request.head.sha }}
5454
- name: Setup Go

.github/workflows/lint.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
- uses: step-security/harden-runner@1b05615854632b887b69ae1be8cbefe72d3ae423 # v2.6.0
2323
with:
2424
egress-policy: audit # TODO: change to 'egress-policy: block' after couple of runs
25-
- uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # v4.1.0
25+
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
2626
- uses: actions/setup-go@93397bea11091df50f3d7e59dc26a7711a8bcfbe # v4.1.0
2727
with:
2828
go-version: ${{ env.GO_VERSION }}

.github/workflows/main.yml

+9-9
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ jobs:
4141
with:
4242
egress-policy: audit # TODO: change to 'egress-policy: block' after couple of runs
4343
- name: Clone the code
44-
uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # v4.1.0
44+
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
4545
- name: Setup Go
4646
uses: actions/setup-go@93397bea11091df50f3d7e59dc26a7711a8bcfbe # v4.1.0
4747
with:
@@ -117,7 +117,7 @@ jobs:
117117
restore-keys: |
118118
${{ runner.os }}-go-
119119
- name: Clone the code
120-
uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # v4.1.0
120+
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
121121
with:
122122
fetch-depth: 0
123123
- name: Setup Go
@@ -147,7 +147,7 @@ jobs:
147147
with:
148148
egress-policy: audit # TODO: change to 'egress-policy: block' after couple of runs
149149
- name: Clone the code
150-
uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # v4.1.0
150+
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
151151
- name: Setup Go
152152
uses: actions/setup-go@93397bea11091df50f3d7e59dc26a7711a8bcfbe # v4.1.0
153153
with:
@@ -182,7 +182,7 @@ jobs:
182182
version: ${{ env.PROTOC_VERSION }}
183183
repo-token: ${{ secrets.GITHUB_TOKEN }}
184184
- name: Clone the code
185-
uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # v4.1.0
185+
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
186186
with:
187187
fetch-depth: 0
188188
- name: Setup Go
@@ -237,7 +237,7 @@ jobs:
237237
restore-keys: |
238238
${{ runner.os }}-go-
239239
- name: Clone the code
240-
uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # v4.1.0
240+
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
241241
- name: Setup Go
242242
uses: actions/setup-go@93397bea11091df50f3d7e59dc26a7711a8bcfbe # v4.1.0
243243
with:
@@ -277,7 +277,7 @@ jobs:
277277
restore-keys: |
278278
${{ runner.os }}-go-
279279
- name: Clone the code
280-
uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # v4.1.0
280+
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
281281
with:
282282
fetch-depth: 0
283283
- name: Setup Go
@@ -324,7 +324,7 @@ jobs:
324324
restore-keys: |
325325
${{ runner.os }}-go-
326326
- name: Clone the code
327-
uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # v4.1.0
327+
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
328328
with:
329329
fetch-depth: 0
330330
- name: Setup Go
@@ -359,7 +359,7 @@ jobs:
359359
version: ${{ env.PROTOC_VERSION }}
360360
repo-token: ${{ secrets.GITHUB_TOKEN }}
361361
- name: Clone the code
362-
uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # v4.1.0
362+
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
363363
with:
364364
fetch-depth: 0
365365
- name: Setup Go
@@ -388,7 +388,7 @@ jobs:
388388
with:
389389
egress-policy: audit # TODO: change to 'egress-policy: block' after couple of runs
390390

391-
- uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # v4.1.0
391+
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
392392
- uses: actions/setup-go@93397bea11091df50f3d7e59dc26a7711a8bcfbe # v2.2.0
393393
with:
394394
go-version: ${{ env.GO_VERSION }}

.github/workflows/publishimage.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ jobs:
4040
egress-policy: audit # TODO: change to 'egress-policy: block' after couple of runs
4141

4242
- name: Clone the code
43-
uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # v4.1.0
43+
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
4444
with:
4545
fetch-depth: 0
4646
- name: Setup Go

.github/workflows/scorecard-analysis.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222

2323
steps:
2424
- name: "Checkout code"
25-
uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # v4.1.0
25+
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
2626

2727
- name: "Run analysis"
2828
uses: ossf/scorecard-action@483ef80eb98fb506c348f7d62e28055e49fe2398 # v2.3.0

.github/workflows/slsa-goreleaser.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
go-binary-name: ${{ steps.build.outputs.go-binary-name }}
2020
steps:
2121
- id: checkout
22-
uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # v4.1.0
22+
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
2323
with:
2424
fetch-depth: 0
2525
- id: ldflags

0 commit comments

Comments
 (0)