From 4625189cb96f04eee891c94035726f15a089dbd6 Mon Sep 17 00:00:00 2001 From: Josh Junon Date: Thu, 2 May 2024 13:00:25 +0200 Subject: [PATCH] remove use of cache --- .github/actions/init-env-rust/action.yaml | 7 ------- .github/workflows/push.yaml | 1 - 2 files changed, 8 deletions(-) diff --git a/.github/actions/init-env-rust/action.yaml b/.github/actions/init-env-rust/action.yaml index e133720de0..5674b65d60 100644 --- a/.github/actions/init-env-rust/action.yaml +++ b/.github/actions/init-env-rust/action.yaml @@ -3,13 +3,6 @@ description: prepare runner for rust related tasks runs: using: "composite" steps: - - name: Cache rust dependencies - if: runner.name != 'ScottsMacStudio' # internet in berlin is very slow - uses: Swatinem/rust-cache@v2 - with: - prefix-key: gitbutler-client - shared-key: rust - - name: Check versions shell: bash run: | diff --git a/.github/workflows/push.yaml b/.github/workflows/push.yaml index ac1300a105..5189f944a8 100644 --- a/.github/workflows/push.yaml +++ b/.github/workflows/push.yaml @@ -227,6 +227,5 @@ jobs: if: ${{ needs.changes.outputs.rust == 'true' }} steps: - uses: actions/checkout@v3 - - uses: Swatinem/rust-cache@v2 - name: "cargo check" run: cargo check --all --bins --examples --features windows