From f0039ed77f9f35b91c93b6c911e1aaee9a4249b8 Mon Sep 17 00:00:00 2001 From: Thomas Schaffter Date: Wed, 9 Oct 2024 22:12:33 +0000 Subject: [PATCH] disable pnpm cache in CI workflow to troubleshoot error --- .github/actions/setup-dev-container/action.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/actions/setup-dev-container/action.yml b/.github/actions/setup-dev-container/action.yml index 481d955516..a840d6f501 100644 --- a/.github/actions/setup-dev-container/action.yml +++ b/.github/actions/setup-dev-container/action.yml @@ -3,13 +3,13 @@ description: 'Installs the dev container CLI, fetches caches (if exist), and sta runs: using: 'composite' steps: - - name: Set up pnpm cache - uses: actions/cache@v3 - with: - path: '/tmp/.pnpm-store' - key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }} - restore-keys: | - ${{ runner.os }}-pnpm-store- + # - name: Set up pnpm cache + # uses: actions/cache@v3 + # with: + # path: '/tmp/.pnpm-store' + # key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }} + # restore-keys: | + # ${{ runner.os }}-pnpm-store- - name: Set up Renv cache uses: actions/cache@v3