From de1268ffb9a314f2efdd22ed0752d5f2232bf856 Mon Sep 17 00:00:00 2001 From: Nils Hanke Date: Mon, 19 Sep 2022 10:39:17 +0200 Subject: [PATCH] Pin cache action against specific commit --- .github/actions/e2e_test/action.yml | 2 +- .github/workflows/e2e-test-manual-macos.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/actions/e2e_test/action.yml b/.github/actions/e2e_test/action.yml index 4298eaa1f..def1c8ccc 100644 --- a/.github/actions/e2e_test/action.yml +++ b/.github/actions/e2e_test/action.yml @@ -64,7 +64,7 @@ runs: - name: Download the bootstrapper from cache id: download-bootstrapper-cache if: inputs.isDebugImage == 'true' && runner.os == 'macOS' - uses: actions/cache@v3 + uses: actions/cache@fd5de65bc895cf536527842281bea11763fefd77 with: key: bootstrapper-${{ github.sha }} path: "build/bootstrapper" diff --git a/.github/workflows/e2e-test-manual-macos.yml b/.github/workflows/e2e-test-manual-macos.yml index 50bf8e168..c666da4e3 100644 --- a/.github/workflows/e2e-test-manual-macos.yml +++ b/.github/workflows/e2e-test-manual-macos.yml @@ -70,7 +70,7 @@ jobs: - name: Upload bootstrapper to cache if: ${{ github.event.steps.check-bootstrapper-cache.cache-hit != 'true'}} - uses: actions/cache@v3 + uses: actions/cache@fd5de65bc895cf536527842281bea11763fefd77 with: key: bootstrapper-${{ github.sha }} path: "build/bootstrapper"