Skip to content
Open
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
10 changes: 5 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
name: Format check
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v7
- uses: dtolnay/rust-toolchain@stable
with:
components: rustfmt
Expand All @@ -35,7 +35,7 @@ jobs:
image: quay.io/fedora/fedora:latest
steps:
- run: dnf -y install cargo clippy gcc-c++ fuse3-devel openssl-devel git
- uses: actions/checkout@v4
- uses: actions/checkout@v7
- name: Clippy
run: cargo clippy --workspace -- -D warnings
- name: Unit tests
Expand All @@ -52,7 +52,7 @@ jobs:
cp target/debug/cfsrun /tmp/binaries/
cp /tmp/composefs-rs/target/debug/cfsctl /tmp/binaries/
- name: Upload binaries
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: binaries
path: /tmp/binaries/
Expand All @@ -66,9 +66,9 @@ jobs:
options: "--privileged --tmpfs /var/tmp:rw,exec"
steps:
- run: dnf -y install cargo gcc-c++ fuse3-devel openssl-devel crun skopeo pasta netavark catatonit
- uses: actions/checkout@v4
- uses: actions/checkout@v7
- name: Download binaries
uses: actions/download-artifact@v4
uses: actions/download-artifact@v8
with:
name: binaries
path: /usr/local/bin
Expand Down