Skip to content

Commit 3ca9528

Browse files
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]>
1 parent 8f14791 commit 3ca9528

11 files changed

Lines changed: 24 additions & 24 deletions

.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.21.5"
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: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
go-version: ${{ env.GO_VERSION }}
3737
cache: false # see actions/setup-go#368
3838

39-
- uses: actions/checkout@v3
39+
- uses: actions/checkout@v4
4040
- uses: golangci/golangci-lint-action@v3
4141
with:
4242
version: v1.55.2
@@ -58,7 +58,7 @@ jobs:
5858
go-version: ${{ env.GO_VERSION }}
5959
cache: false # see actions/setup-go#368
6060

61-
- uses: actions/checkout@v3
61+
- uses: actions/checkout@v4
6262
with:
6363
path: src/github.com/containerd/containerd
6464
fetch-depth: 100
@@ -92,7 +92,7 @@ jobs:
9292
go-version: ${{ env.GO_VERSION }}
9393
cache: false # see actions/setup-go#368
9494

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

@@ -124,7 +124,7 @@ jobs:
124124
with:
125125
go-version: ${{ env.GO_VERSION }}
126126
cache: false # see actions/setup-go#368
127-
- uses: actions/checkout@v3
127+
- uses: actions/checkout@v4
128128
- run: go install github.com/cpuguy83/go-md2man/[email protected]
129129
- run: make man
130130

@@ -158,7 +158,7 @@ jobs:
158158
with:
159159
go-version: ${{ env.GO_VERSION }}
160160
cache: false # see actions/setup-go#368
161-
- uses: actions/checkout@v3
161+
- uses: actions/checkout@v4
162162
- run: |
163163
set -e -x
164164
@@ -216,7 +216,7 @@ jobs:
216216
go-version: ${{ matrix.go-version }}
217217
cache: false # see actions/setup-go#368
218218

219-
- uses: actions/checkout@v3
219+
- uses: actions/checkout@v4
220220

221221
# NOTE(aznashwan): starting with Golang 1.21, the windows-2019 GitHub runner's
222222
# builtin MinGW version leads to DLL loading errors during runtime.
@@ -257,11 +257,11 @@ jobs:
257257
go-version: ${{ env.GO_VERSION }}
258258
cache: false # see actions/setup-go#368
259259

260-
- uses: actions/checkout@v3
260+
- uses: actions/checkout@v4
261261
with:
262262
path: src/github.com/containerd/containerd
263263

264-
- uses: actions/checkout@v3
264+
- uses: actions/checkout@v4
265265
with:
266266
repository: kubernetes-sigs/cri-tools
267267
path: src/github.com/kubernetes-sigs/cri-tools
@@ -416,7 +416,7 @@ jobs:
416416
go-version: ${{ env.GO_VERSION }}
417417
cache: false # see actions/setup-go#368
418418

419-
- uses: actions/checkout@v3
419+
- uses: actions/checkout@v4
420420

421421
- name: Install containerd dependencies
422422
env:
@@ -558,7 +558,7 @@ jobs:
558558
cat /etc/os-release
559559
cat /proc/cpuinfo
560560
free -mt
561-
- uses: actions/checkout@v3
561+
- uses: actions/checkout@v4
562562
- uses: actions/cache@v3
563563
with:
564564
path: /root/.vagrant.d
@@ -593,7 +593,7 @@ jobs:
593593
needs: [project, linters, protos, man]
594594

595595
steps:
596-
- uses: actions/checkout@v3
596+
- uses: actions/checkout@v4
597597
- name: Set up cgroup v2 delegation
598598
run: |
599599
sudo mkdir -p /etc/systemd/system/[email protected]
@@ -622,7 +622,7 @@ jobs:
622622
with:
623623
go-version: ${{ env.GO_VERSION }}
624624
cache: false # see actions/setup-go#368
625-
- uses: actions/checkout@v3
625+
- uses: actions/checkout@v4
626626
- run: script/setup/install-gotestsum
627627
- run: script/setup/install-teststat
628628
- 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@v3
3636
with:

.github/workflows/fuzz.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,5 +43,5 @@ jobs:
4343
- uses: actions/setup-go@v3
4444
with:
4545
go-version: 1.21.x
46-
- uses: actions/checkout@v3
46+
- uses: actions/checkout@v4
4747
- 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.21.5"
3232

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

.github/workflows/links.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
name: lychee
1515
timeout-minutes: 15
1616
steps:
17-
- uses: actions/checkout@v3
17+
- uses: actions/checkout@v4
1818

1919
- uses: lycheeverse/[email protected]
2020
with:

.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: |

0 commit comments

Comments
 (0)