diff --git a/.github/workflows/QA.yaml b/.github/workflows/QA.yaml index ab6f41b..e01aad2 100644 --- a/.github/workflows/QA.yaml +++ b/.github/workflows/QA.yaml @@ -49,7 +49,7 @@ jobs: steps: - uses: actions/checkout@v6 - name: Cache cargo-audit - uses: actions/cache@v4 + uses: actions/cache@v5 id: cache-audit with: path: ~/.cargo/bin/cargo-audit @@ -79,7 +79,7 @@ jobs: steps: - uses: actions/checkout@v6 - name: Cache cargo-deny - uses: actions/cache@v4 + uses: actions/cache@v5 id: cache-deny with: path: ~/.cargo/bin/cargo-deny diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index c9a8fd5..e0083c0 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -62,7 +62,7 @@ jobs: uses: dtolnay/rust-toolchain@stable - name: Cache cargo - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: | ~/.cargo/registry @@ -90,7 +90,7 @@ jobs: uses: dtolnay/rust-toolchain@stable - name: Cache cargo registry - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: | ~/.cargo/registry @@ -135,7 +135,7 @@ jobs: uses: dtolnay/rust-toolchain@stable - name: Cache cargo registry - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: | ~/.cargo/registry @@ -191,7 +191,7 @@ jobs: targets: ${{ matrix.target }} - name: Cache cargo - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: | ~/.cargo/registry @@ -214,7 +214,7 @@ jobs: shasum -a 256 sx-${{ needs.validate.outputs.version }}-${{ matrix.target }}.tar.gz > sx-${{ needs.validate.outputs.version }}-${{ matrix.target }}.tar.gz.sha256 - name: Upload artifact - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v6 with: name: sx-${{ matrix.target }} path: dist/*.tar.gz* @@ -231,7 +231,7 @@ jobs: ref: v${{ needs.validate.outputs.version }} - name: Download all artifacts - uses: actions/download-artifact@v4 + uses: actions/download-artifact@v7 with: path: artifacts merge-multiple: true