Skip to content

Commit

Permalink
build(deps): bump actions/checkout from 3 to 4
Browse files Browse the repository at this point in the history
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] <support@github.com>
(cherry picked from commit 3ca9528)
Signed-off-by: Austin Vazquez <macedonv@amazon.com>
  • Loading branch information
dependabot[bot] authored and austinvazquez committed Feb 26, 2024
1 parent 22feefa commit 2b40a40
Show file tree
Hide file tree
Showing 10 changed files with 21 additions and 21 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build-test-images.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ jobs:
with:
go-version: "1.20.13"

- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
path: src/github.com/containerd/containerd

Expand Down
20 changes: 10 additions & 10 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:
with:
go-version: ${{ env.GO_VERSION }}

- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: golangci/golangci-lint-action@v3
with:
version: v1.51.1
Expand All @@ -59,7 +59,7 @@ jobs:
with:
go-version: ${{ env.GO_VERSION }}

- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
path: src/github.com/containerd/containerd
fetch-depth: 100
Expand Down Expand Up @@ -92,7 +92,7 @@ jobs:
with:
go-version: ${{ env.GO_VERSION }}

- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
path: src/github.com/containerd/containerd

Expand Down Expand Up @@ -123,7 +123,7 @@ jobs:
- uses: actions/setup-go@v5
with:
go-version: ${{ env.GO_VERSION }}
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- run: go install github.com/cpuguy83/go-md2man/v2@v2.0.2
- run: make man

Expand Down Expand Up @@ -156,7 +156,7 @@ jobs:
- uses: actions/setup-go@v5
with:
go-version: ${{ env.GO_VERSION }}
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- run: |
set -e -x
Expand Down Expand Up @@ -213,7 +213,7 @@ jobs:
with:
go-version: ${{ matrix.go-version }}

- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Make
run: |
Expand Down Expand Up @@ -247,11 +247,11 @@ jobs:
with:
go-version: ${{ env.GO_VERSION }}

- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
path: src/github.com/containerd/containerd

- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
repository: kubernetes-sigs/cri-tools
path: src/github.com/kubernetes-sigs/cri-tools
Expand Down Expand Up @@ -417,7 +417,7 @@ jobs:
with:
go-version: ${{ env.GO_VERSION }}

- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Install containerd dependencies
env:
Expand Down Expand Up @@ -551,7 +551,7 @@ jobs:
- uses: actions/setup-go@v5
with:
go-version: ${{ env.GO_VERSION }}
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- run: script/setup/install-gotestsum
- run: script/setup/install-teststat
- name: Tests
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/codeql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v3
uses: actions/checkout@v4

- uses: actions/setup-go@v5
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/fuzz.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,5 +45,5 @@ jobs:
# FIXME: go-fuzz fails with Go 1.20: `cgo_unix_cgo_res.cgo2.c:(.text+0x32): undefined reference to `__res_search'`
# https://github.com/containerd/containerd/pull/8103#issuecomment-1429256152
go-version: 1.18
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- run: script/go-test-fuzz.sh
2 changes: 1 addition & 1 deletion .github/workflows/images.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
with:
go-version: "1.20.13"

- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
path: src/github.com/containerd/containerd

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
with:
go-version: ${{ env.GO_VERSION }}

- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
path: src/github.com/containerd/containerd

Expand Down Expand Up @@ -147,7 +147,7 @@ jobs:
with:
go-version: ${{ env.GO_VERSION }}

- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
path: src/github.com/containerd/containerd

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:

steps:
- name: Checkout code
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
ref: ${{ github.ref }}
path: src/github.com/containerd/containerd
Expand Down Expand Up @@ -93,7 +93,7 @@ jobs:
releasever="${releasever#refs/tags/}"
echo "RELEASE_VER=${releasever}" >> $GITHUB_ENV
- name: Checkout containerd
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
# Intentionally use github.repository instead of containerd/containerd to
# make this action runnable on forks.
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/scorecards.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:

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

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/windows-hyperv-periodic.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ jobs:
GOOGLE_BUCKET: "containerd-integration/logs/windows-ltsc2022-hyperv/"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Install required packages
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/windows-periodic.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ jobs:
runs-on: ubuntu-latest
timeout-minutes: 90
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Install required packages
run: |
Expand Down

0 comments on commit 2b40a40

Please sign in to comment.