Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump actions/checkout from 3 to 4 #1259

Merged
merged 1 commit into from
Sep 6, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
images:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- run: images/build -d

linters:
Expand Down Expand Up @@ -46,7 +46,7 @@ jobs:
restore-keys: ${{ runner.os }}-go-

- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
path: src/github.com/kubernetes-sigs/cri-tools

Expand Down Expand Up @@ -91,7 +91,7 @@ jobs:
restore-keys: ${{ runner.os }}-go-

- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
path: src/github.com/kubernetes-sigs/cri-tools
fetch-depth: 0
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/containerd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -69,21 +69,21 @@ jobs:
restore-keys: ${{ runner.os }}-go-

- name: Checkout containerd/containerd ${{ format(matrix.version, '/') }}
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
path: ${{ github.workspace }}/src/github.com/containerd/containerd
repository: containerd/containerd
ref: ${{ format(matrix.version, '/') }}

- name: Checkout Microsoft/hcsshim
uses: actions/checkout@v3
uses: actions/checkout@v4
if: startsWith(matrix.os, 'windows')
with:
repository: Microsoft/hcsshim
path: src/github.com/Microsoft/hcsshim

- name: Checkout cri-tools for this commit
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
path: ${{github.workspace}}/src/github.com/kubernetes-sigs/cri-tools

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/crio.yml
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ jobs:
sudo systemctl start crio

- name: Checkout cri-tools for this commit
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
path: ${{github.workspace}}/src/github.com/kubernetes-sigs/cri-tools

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/e2e.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ jobs:
restore-keys: ${{ runner.os }}-go-

- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
path: src/github.com/kubernetes-sigs/cri-tools

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
~/.cache/go-build
key: go-release-${{ hashFiles('**/go.sum') }}
restore-keys: go-release-
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
fetch-depth: 0
path: src/github.com/kubernetes-sigs/cri-tools
Expand Down
Loading