Skip to content

Commit 2b40a40

Browse files
dependabot[bot]austinvazquez
authored andcommitted
build(deps): bump actions/checkout from 3 to 4
Bumps [actions/checkout](https://github.com/actions/checkout) from 3 to 4. - [Release notes](https://github.com/actions/checkout/releases) - [Commits](actions/checkout@v3...v4) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]> (cherry picked from commit 3ca9528) Signed-off-by: Austin Vazquez <[email protected]>
1 parent 22feefa commit 2b40a40

10 files changed

Lines changed: 21 additions & 21 deletions

File tree

.github/workflows/build-test-images.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ jobs:
4545
with:
4646
go-version: "1.20.13"
4747

48-
- uses: actions/checkout@v3
48+
- uses: actions/checkout@v4
4949
with:
5050
path: src/github.com/containerd/containerd
5151

.github/workflows/ci.yml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838
with:
3939
go-version: ${{ env.GO_VERSION }}
4040

41-
- uses: actions/checkout@v3
41+
- uses: actions/checkout@v4
4242
- uses: golangci/golangci-lint-action@v3
4343
with:
4444
version: v1.51.1
@@ -59,7 +59,7 @@ jobs:
5959
with:
6060
go-version: ${{ env.GO_VERSION }}
6161

62-
- uses: actions/checkout@v3
62+
- uses: actions/checkout@v4
6363
with:
6464
path: src/github.com/containerd/containerd
6565
fetch-depth: 100
@@ -92,7 +92,7 @@ jobs:
9292
with:
9393
go-version: ${{ env.GO_VERSION }}
9494

95-
- uses: actions/checkout@v3
95+
- uses: actions/checkout@v4
9696
with:
9797
path: src/github.com/containerd/containerd
9898

@@ -123,7 +123,7 @@ jobs:
123123
- uses: actions/setup-go@v5
124124
with:
125125
go-version: ${{ env.GO_VERSION }}
126-
- uses: actions/checkout@v3
126+
- uses: actions/checkout@v4
127127
- run: go install github.com/cpuguy83/go-md2man/[email protected]
128128
- run: make man
129129

@@ -156,7 +156,7 @@ jobs:
156156
- uses: actions/setup-go@v5
157157
with:
158158
go-version: ${{ env.GO_VERSION }}
159-
- uses: actions/checkout@v3
159+
- uses: actions/checkout@v4
160160
- run: |
161161
set -e -x
162162
@@ -213,7 +213,7 @@ jobs:
213213
with:
214214
go-version: ${{ matrix.go-version }}
215215

216-
- uses: actions/checkout@v3
216+
- uses: actions/checkout@v4
217217

218218
- name: Make
219219
run: |
@@ -247,11 +247,11 @@ jobs:
247247
with:
248248
go-version: ${{ env.GO_VERSION }}
249249

250-
- uses: actions/checkout@v3
250+
- uses: actions/checkout@v4
251251
with:
252252
path: src/github.com/containerd/containerd
253253

254-
- uses: actions/checkout@v3
254+
- uses: actions/checkout@v4
255255
with:
256256
repository: kubernetes-sigs/cri-tools
257257
path: src/github.com/kubernetes-sigs/cri-tools
@@ -417,7 +417,7 @@ jobs:
417417
with:
418418
go-version: ${{ env.GO_VERSION }}
419419

420-
- uses: actions/checkout@v3
420+
- uses: actions/checkout@v4
421421

422422
- name: Install containerd dependencies
423423
env:
@@ -551,7 +551,7 @@ jobs:
551551
- uses: actions/setup-go@v5
552552
with:
553553
go-version: ${{ env.GO_VERSION }}
554-
- uses: actions/checkout@v3
554+
- uses: actions/checkout@v4
555555
- run: script/setup/install-gotestsum
556556
- run: script/setup/install-teststat
557557
- name: Tests

.github/workflows/codeql.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030

3131
steps:
3232
- name: Checkout repository
33-
uses: actions/checkout@v3
33+
uses: actions/checkout@v4
3434

3535
- uses: actions/setup-go@v5
3636
with:

.github/workflows/fuzz.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,5 +45,5 @@ jobs:
4545
# FIXME: go-fuzz fails with Go 1.20: `cgo_unix_cgo_res.cgo2.c:(.text+0x32): undefined reference to `__res_search'`
4646
# https://github.com/containerd/containerd/pull/8103#issuecomment-1429256152
4747
go-version: 1.18
48-
- uses: actions/checkout@v3
48+
- uses: actions/checkout@v4
4949
- run: script/go-test-fuzz.sh

.github/workflows/images.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
with:
3131
go-version: "1.20.13"
3232

33-
- uses: actions/checkout@v3
33+
- uses: actions/checkout@v4
3434
with:
3535
path: src/github.com/containerd/containerd
3636

.github/workflows/nightly.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
with:
2828
go-version: ${{ env.GO_VERSION }}
2929

30-
- uses: actions/checkout@v3
30+
- uses: actions/checkout@v4
3131
with:
3232
path: src/github.com/containerd/containerd
3333

@@ -147,7 +147,7 @@ jobs:
147147
with:
148148
go-version: ${{ env.GO_VERSION }}
149149

150-
- uses: actions/checkout@v3
150+
- uses: actions/checkout@v4
151151
with:
152152
path: src/github.com/containerd/containerd
153153

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929

3030
steps:
3131
- name: Checkout code
32-
uses: actions/checkout@v3
32+
uses: actions/checkout@v4
3333
with:
3434
ref: ${{ github.ref }}
3535
path: src/github.com/containerd/containerd
@@ -93,7 +93,7 @@ jobs:
9393
releasever="${releasever#refs/tags/}"
9494
echo "RELEASE_VER=${releasever}" >> $GITHUB_ENV
9595
- name: Checkout containerd
96-
uses: actions/checkout@v3
96+
uses: actions/checkout@v4
9797
with:
9898
# Intentionally use github.repository instead of containerd/containerd to
9999
# make this action runnable on forks.

.github/workflows/scorecards.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222

2323
steps:
2424
- name: "Checkout code"
25-
uses: actions/checkout@93ea575cb5d8a053eaa0ac8fa3b40d7e05a33cc8 # tag=v3.1.0
25+
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # tag=v4.1.1
2626
with:
2727
persist-credentials: false
2828

.github/workflows/windows-hyperv-periodic.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ jobs:
5555
GOOGLE_BUCKET: "containerd-integration/logs/windows-ltsc2022-hyperv/"
5656
runs-on: ubuntu-latest
5757
steps:
58-
- uses: actions/checkout@v3
58+
- uses: actions/checkout@v4
5959

6060
- name: Install required packages
6161
run: |

.github/workflows/windows-periodic.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ jobs:
5555
runs-on: ubuntu-latest
5656
timeout-minutes: 90
5757
steps:
58-
- uses: actions/checkout@v3
58+
- uses: actions/checkout@v4
5959

6060
- name: Install required packages
6161
run: |

0 commit comments

Comments
 (0)