From a3a797a29469ce3fec7a28cd1b9c8109cf7e5e51 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=A1n=20Jakub=20Nani=C5=A1ta?= Date: Tue, 30 Jan 2024 23:35:41 -0800 Subject: [PATCH] =?UTF-8?q?=F0=9F=A7=B9=20Update=20cache=20action=20versio?= =?UTF-8?q?n=20(#316)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/actions/setup-build-cache/action.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/actions/setup-build-cache/action.yaml b/.github/workflows/actions/setup-build-cache/action.yaml index e6ba1bd2a..0324dbc9d 100644 --- a/.github/workflows/actions/setup-build-cache/action.yaml +++ b/.github/workflows/actions/setup-build-cache/action.yaml @@ -8,7 +8,7 @@ runs: # This step will speed up workflow runs that don't touch the whole codebase # (or the ones that don't touch the codebase at all) - name: Cache turbo build setup - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: node_modules/.cache/turbo key: ${{ runner.os }}-turbo-${{ github.ref_name }}-${{ github.sha }} @@ -20,7 +20,7 @@ runs: # # This step will speed up workflow runs that use hardhat compilation - name: Cache hardhat compilers - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: .cache/hardhat key: ${{ runner.os }}-hardhat-${{ github.ref_name }}-${{ github.sha }}