diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 8b59713..e7a3f2c 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -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 @@ -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 @@ -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/ @@ -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