From 322e2f27d34a67b94761cf6132be4fd240d37280 Mon Sep 17 00:00:00 2001 From: Mark Yen Date: Thu, 10 Oct 2024 10:37:37 -0700 Subject: [PATCH] CI: Drop yarn cache restoring Trying to see if this helps with issues in CI where Rancher Desktop no longer starts. Hopefully this is due to a poisoned cache. Signed-off-by: Mark Yen --- .github/actions/yarn-install/action.yaml | 6 ------ 1 file changed, 6 deletions(-) diff --git a/.github/actions/yarn-install/action.yaml b/.github/actions/yarn-install/action.yaml index 6584d135709..d0145acfdce 100644 --- a/.github/actions/yarn-install/action.yaml +++ b/.github/actions/yarn-install/action.yaml @@ -5,17 +5,11 @@ description: >- runs: using: composite steps: - # In case we're running on a self-hosted runner without `yarn` installed, - # set up NodeJS, enable `yarn`, and then handle the caching. - uses: actions/setup-node@v4 with: node-version-file: package.json - run: corepack enable yarn shell: bash - - uses: actions/setup-node@v4 - with: - node-version-file: package.json - cache: yarn - uses: actions/setup-go@v5 with: