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](https://github.com/actions/checkout/compare/v3...v4)

---
updated-dependencies:
- dependency-name: actions/checkout
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
This commit is contained in:
dependabot[bot] 2023-12-13 00:20:14 +00:00 committed by GitHub
parent 8f1479132f
commit 3ca95282ea
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
11 changed files with 24 additions and 24 deletions

View File

@ -45,7 +45,7 @@ jobs:
with: with:
go-version: "1.21.5" go-version: "1.21.5"
- uses: actions/checkout@v3 - uses: actions/checkout@v4
with: with:
path: src/github.com/containerd/containerd path: src/github.com/containerd/containerd

View File

@ -36,7 +36,7 @@ jobs:
go-version: ${{ env.GO_VERSION }} go-version: ${{ env.GO_VERSION }}
cache: false # see actions/setup-go#368 cache: false # see actions/setup-go#368
- uses: actions/checkout@v3 - uses: actions/checkout@v4
- uses: golangci/golangci-lint-action@v3 - uses: golangci/golangci-lint-action@v3
with: with:
version: v1.55.2 version: v1.55.2
@ -58,7 +58,7 @@ jobs:
go-version: ${{ env.GO_VERSION }} go-version: ${{ env.GO_VERSION }}
cache: false # see actions/setup-go#368 cache: false # see actions/setup-go#368
- uses: actions/checkout@v3 - uses: actions/checkout@v4
with: with:
path: src/github.com/containerd/containerd path: src/github.com/containerd/containerd
fetch-depth: 100 fetch-depth: 100
@ -92,7 +92,7 @@ jobs:
go-version: ${{ env.GO_VERSION }} go-version: ${{ env.GO_VERSION }}
cache: false # see actions/setup-go#368 cache: false # see actions/setup-go#368
- uses: actions/checkout@v3 - uses: actions/checkout@v4
with: with:
path: src/github.com/containerd/containerd path: src/github.com/containerd/containerd
@ -124,7 +124,7 @@ jobs:
with: with:
go-version: ${{ env.GO_VERSION }} go-version: ${{ env.GO_VERSION }}
cache: false # see actions/setup-go#368 cache: false # see actions/setup-go#368
- uses: actions/checkout@v3 - uses: actions/checkout@v4
- run: go install github.com/cpuguy83/go-md2man/v2@v2.0.2 - run: go install github.com/cpuguy83/go-md2man/v2@v2.0.2
- run: make man - run: make man
@ -158,7 +158,7 @@ jobs:
with: with:
go-version: ${{ env.GO_VERSION }} go-version: ${{ env.GO_VERSION }}
cache: false # see actions/setup-go#368 cache: false # see actions/setup-go#368
- uses: actions/checkout@v3 - uses: actions/checkout@v4
- run: | - run: |
set -e -x set -e -x
@ -216,7 +216,7 @@ jobs:
go-version: ${{ matrix.go-version }} go-version: ${{ matrix.go-version }}
cache: false # see actions/setup-go#368 cache: false # see actions/setup-go#368
- uses: actions/checkout@v3 - uses: actions/checkout@v4
# NOTE(aznashwan): starting with Golang 1.21, the windows-2019 GitHub runner's # NOTE(aznashwan): starting with Golang 1.21, the windows-2019 GitHub runner's
# builtin MinGW version leads to DLL loading errors during runtime. # builtin MinGW version leads to DLL loading errors during runtime.
@ -257,11 +257,11 @@ jobs:
go-version: ${{ env.GO_VERSION }} go-version: ${{ env.GO_VERSION }}
cache: false # see actions/setup-go#368 cache: false # see actions/setup-go#368
- uses: actions/checkout@v3 - uses: actions/checkout@v4
with: with:
path: src/github.com/containerd/containerd path: src/github.com/containerd/containerd
- uses: actions/checkout@v3 - uses: actions/checkout@v4
with: with:
repository: kubernetes-sigs/cri-tools repository: kubernetes-sigs/cri-tools
path: src/github.com/kubernetes-sigs/cri-tools path: src/github.com/kubernetes-sigs/cri-tools
@ -416,7 +416,7 @@ jobs:
go-version: ${{ env.GO_VERSION }} go-version: ${{ env.GO_VERSION }}
cache: false # see actions/setup-go#368 cache: false # see actions/setup-go#368
- uses: actions/checkout@v3 - uses: actions/checkout@v4
- name: Install containerd dependencies - name: Install containerd dependencies
env: env:
@ -558,7 +558,7 @@ jobs:
cat /etc/os-release cat /etc/os-release
cat /proc/cpuinfo cat /proc/cpuinfo
free -mt free -mt
- uses: actions/checkout@v3 - uses: actions/checkout@v4
- uses: actions/cache@v3 - uses: actions/cache@v3
with: with:
path: /root/.vagrant.d path: /root/.vagrant.d
@ -593,7 +593,7 @@ jobs:
needs: [project, linters, protos, man] needs: [project, linters, protos, man]
steps: steps:
- uses: actions/checkout@v3 - uses: actions/checkout@v4
- name: Set up cgroup v2 delegation - name: Set up cgroup v2 delegation
run: | run: |
sudo mkdir -p /etc/systemd/system/user@.service.d sudo mkdir -p /etc/systemd/system/user@.service.d
@ -622,7 +622,7 @@ jobs:
with: with:
go-version: ${{ env.GO_VERSION }} go-version: ${{ env.GO_VERSION }}
cache: false # see actions/setup-go#368 cache: false # see actions/setup-go#368
- uses: actions/checkout@v3 - uses: actions/checkout@v4
- run: script/setup/install-gotestsum - run: script/setup/install-gotestsum
- run: script/setup/install-teststat - run: script/setup/install-teststat
- name: Tests - name: Tests

View File

@ -30,7 +30,7 @@ jobs:
steps: steps:
- name: Checkout repository - name: Checkout repository
uses: actions/checkout@v3 uses: actions/checkout@v4
- uses: actions/setup-go@v3 - uses: actions/setup-go@v3
with: with:

View File

@ -43,5 +43,5 @@ jobs:
- uses: actions/setup-go@v3 - uses: actions/setup-go@v3
with: with:
go-version: 1.21.x go-version: 1.21.x
- uses: actions/checkout@v3 - uses: actions/checkout@v4
- run: script/go-test-fuzz.sh - run: script/go-test-fuzz.sh

View File

@ -30,7 +30,7 @@ jobs:
with: with:
go-version: "1.21.5" go-version: "1.21.5"
- uses: actions/checkout@v3 - uses: actions/checkout@v4
with: with:
path: src/github.com/containerd/containerd path: src/github.com/containerd/containerd

View File

@ -14,7 +14,7 @@ jobs:
name: lychee name: lychee
timeout-minutes: 15 timeout-minutes: 15
steps: steps:
- uses: actions/checkout@v3 - uses: actions/checkout@v4
- uses: lycheeverse/lychee-action@v1.8.0 - uses: lycheeverse/lychee-action@v1.8.0
with: with:

View File

@ -27,7 +27,7 @@ jobs:
with: with:
go-version: ${{ env.GO_VERSION }} go-version: ${{ env.GO_VERSION }}
- uses: actions/checkout@v3 - uses: actions/checkout@v4
with: with:
path: src/github.com/containerd/containerd path: src/github.com/containerd/containerd
@ -147,7 +147,7 @@ jobs:
with: with:
go-version: ${{ env.GO_VERSION }} go-version: ${{ env.GO_VERSION }}
- uses: actions/checkout@v3 - uses: actions/checkout@v4
with: with:
path: src/github.com/containerd/containerd path: src/github.com/containerd/containerd

View File

@ -29,7 +29,7 @@ jobs:
steps: steps:
- name: Checkout code - name: Checkout code
uses: actions/checkout@v3 uses: actions/checkout@v4
with: with:
ref: ${{ github.ref }} ref: ${{ github.ref }}
path: src/github.com/containerd/containerd path: src/github.com/containerd/containerd
@ -93,7 +93,7 @@ jobs:
releasever="${releasever#refs/tags/}" releasever="${releasever#refs/tags/}"
echo "RELEASE_VER=${releasever}" >> $GITHUB_ENV echo "RELEASE_VER=${releasever}" >> $GITHUB_ENV
- name: Checkout containerd - name: Checkout containerd
uses: actions/checkout@v3 uses: actions/checkout@v4
with: with:
# Intentionally use github.repository instead of containerd/containerd to # Intentionally use github.repository instead of containerd/containerd to
# make this action runnable on forks. # make this action runnable on forks.

View File

@ -22,7 +22,7 @@ jobs:
steps: steps:
- name: "Checkout code" - name: "Checkout code"
uses: actions/checkout@93ea575cb5d8a053eaa0ac8fa3b40d7e05a33cc8 # tag=v3.1.0 uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # tag=v4.1.1
with: with:
persist-credentials: false persist-credentials: false

View File

@ -55,7 +55,7 @@ jobs:
GOOGLE_BUCKET: "containerd-integration/logs/windows-ltsc2022-hyperv/" GOOGLE_BUCKET: "containerd-integration/logs/windows-ltsc2022-hyperv/"
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- uses: actions/checkout@v3 - uses: actions/checkout@v4
- name: Install required packages - name: Install required packages
run: | run: |

View File

@ -55,7 +55,7 @@ jobs:
runs-on: ubuntu-latest runs-on: ubuntu-latest
timeout-minutes: 90 timeout-minutes: 90
steps: steps:
- uses: actions/checkout@v3 - uses: actions/checkout@v4
- name: Install required packages - name: Install required packages
run: | run: |