From cb8eeefcaa7963572dca872272c659d470038d88 Mon Sep 17 00:00:00 2001 From: JJ Kasper Date: Thu, 17 Nov 2022 15:19:40 -0800 Subject: [PATCH] Update build-wasm to checkout directly (#43054) The full cache doesn't need to be downloaded so we can do a direct checkout for the repo instead which should be faster. --- .github/workflows/build_test_deploy.yml | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/.github/workflows/build_test_deploy.yml b/.github/workflows/build_test_deploy.yml index bdf426e405705..feba8601c2c7c 100644 --- a/.github/workflows/build_test_deploy.yml +++ b/.github/workflows/build_test_deploy.yml @@ -1469,11 +1469,7 @@ jobs: TURBO_TOKEN: ${{ secrets.TURBO_TOKEN }} TURBO_REMOTE_ONLY: 'true' steps: - - uses: actions/cache@v3 - id: restore-build - with: - path: ./* - key: ${{ github.sha }}-${{ github.run_number }} + - uses: actions/checkout@v3 - name: Setup node uses: actions/setup-node@v3