diff --git a/.github/workflows/ci.generate.ts b/.github/workflows/ci.generate.ts index 4fe02fb096..01c8803e65 100755 --- a/.github/workflows/ci.generate.ts +++ b/.github/workflows/ci.generate.ts @@ -475,7 +475,7 @@ const ci = { }, { name: "Cache Cargo home", - uses: "actions/cache@v3", + uses: "buildjet/cache@v3", with: { // See https://doc.rust-lang.org/cargo/guide/cargo-home.html#caching-the-cargo-home-in-ci path: [ @@ -490,7 +490,7 @@ const ci = { { // Restore cache from the latest 'main' branch build. name: "Restore cache build output (PR)", - uses: "actions/cache/restore@v3", + uses: "buildjet/cache/restore@v3", if: "github.ref != 'refs/heads/main' && !startsWith(github.ref, 'refs/tags/')", with: { @@ -914,7 +914,7 @@ const ci = { { // In main branch, always create a fresh cache name: "Save cache build output (main)", - uses: "actions/cache/save@v3", + uses: "buildjet/cache/save@v3", if: "(matrix.job == 'test' || matrix.job == 'lint') && github.ref == 'refs/heads/main'", with: {