diff --git a/actions/phive/install/action.yml b/actions/phive/install/action.yml index 61043d41..ab7952a1 100644 --- a/actions/phive/install/action.yml +++ b/actions/phive/install/action.yml @@ -30,7 +30,7 @@ runs: shell: bash - name: ♻️ Cache dependencies installed with phive - uses: actions/cache@v4.2.3 + uses: actions/cache@v6.1.0 with: path: ${{ inputs.phive-home }} key: phive-${{ hashFiles('**/phars.xml') }} diff --git a/actions/playwright/install/action.yml b/actions/playwright/install/action.yml index ac2b2ab5..270c661d 100644 --- a/actions/playwright/install/action.yml +++ b/actions/playwright/install/action.yml @@ -36,7 +36,7 @@ runs: echo "CACHE_KEY=${{ runner.os }}-playwright-cache-${{ inputs.cache-prefix }}-${{ steps.playwright-config.outputs.CURRENT_VERSION }}-${{ steps.playwright-config.outputs.BROWSERS }}" >> $GITHUB_OUTPUT - name: 📥 Restore playwright install - uses: actions/cache@v4 + uses: actions/cache@v6 id: playwright-cache with: path: ${{ inputs.playwright-cache-folder }} diff --git a/actions/pnpm/install/action.yml b/actions/pnpm/install/action.yml index d60dbc9e..9012f2e4 100644 --- a/actions/pnpm/install/action.yml +++ b/actions/pnpm/install/action.yml @@ -53,7 +53,7 @@ runs: echo "YEAR_MONTH=$(/bin/date -u "+%Y%m")" >> $GITHUB_OUTPUT - name: 🗄️ Setup pnpm cache - uses: actions/cache@v4 + uses: actions/cache@v6 id: pnpm-store-cache with: path: ${{ steps.pnpm-config.outputs.STORE_PATH }} @@ -64,7 +64,7 @@ runs: - name: ♻️ Restore node_modules if: inputs.cache-node-modules == 'true' id: pnpm-nm-cache - uses: actions/cache@v4 + uses: actions/cache@v6 with: path: ${{ inputs.cwd }}/**/node_modules key: pnpm-nm-cache-${{ inputs.cache-prefix }}-${{ runner.os }}-${{ steps.pnpm-config.outputs.CURRENT_NODE_VERSION }}-${{ steps.pnpm-config.outputs.CURRENT_BRANCH }}-${{ hashFiles('**/pnpm-lock.yaml') }}