Skip to content

build(deps): bump actions/checkout from 4 to 5 #424

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

Merged
merged 1 commit into from
Aug 12, 2025
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
16 changes: 8 additions & 8 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
os: [ubuntu-latest, macos-latest]

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5

- run: ./scripts/install-protobuf.sh
shell: bash
Expand Down Expand Up @@ -53,7 +53,7 @@ jobs:
timeout-minutes: 20

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- run: ./scripts/install-protobuf.sh
shell: bash
- run: cargo check --examples --tests -p containerd-shim -p containerd-shim-protos -p containerd-client
Expand All @@ -76,7 +76,7 @@ jobs:
os: [ubuntu-latest, macos-latest, windows-latest]

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- run: ./scripts/install-protobuf.sh
shell: bash
- run: |
Expand All @@ -102,7 +102,7 @@ jobs:
timeout-minutes: 15

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- run: ./scripts/install-protobuf.sh
shell: bash
- run: cargo build --all-features --timings
Expand All @@ -118,7 +118,7 @@ jobs:
timeout-minutes: 10

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- uses: EmbarkStudios/cargo-deny-action@v2

linux-integration:
Expand All @@ -133,7 +133,7 @@ jobs:

steps:
- name: Checkout extensions
uses: actions/checkout@v4
uses: actions/checkout@v5

- name: Download containerd archive
env:
Expand All @@ -152,7 +152,7 @@ jobs:
tar -xf containerd.tar.gz -C $HOME/.local

- name: Checkout containerd
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
repository: containerd/containerd
path: src/github.com/containerd/containerd
Expand Down Expand Up @@ -192,7 +192,7 @@ jobs:

steps:
- name: Checkout extensions
uses: actions/checkout@v4
uses: actions/checkout@v5
- run: ./scripts/install-protobuf.sh
shell: bash

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/cover.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
statuses: write

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5

- run: |
sudo apt-get install protobuf-compiler
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ jobs:
CARGO_FILE: "crates/${{ inputs.crate }}/Cargo.toml"

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5

- name: Extract package version
id: extract_version
Expand Down
Loading