Skip to content
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 @@ -23,7 +23,7 @@ jobs:
target: aarch64-apple-darwin

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

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

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

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

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

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

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

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

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

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

steps:
- name: Checkout extensions
uses: actions/checkout@v5
uses: actions/checkout@v6
- 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@v5
- uses: actions/checkout@v6

- 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@v5
- uses: actions/checkout@v6

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