Skip to content

Commit

Permalink
chore(deps): update actions/cache action to v4.2.0 (#104)
Browse files Browse the repository at this point in the history
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
  • Loading branch information
renovate[bot] authored Dec 9, 2024
1 parent 7445a16 commit 3aeed8c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions step/setup/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ runs:
echo "YEAR_MONTH=$(/bin/date -u "+%Y%m")" >> $GITHUB_OUTPUT
- name: "Setup pnpm cache"
uses: "actions/cache@6849a6489940f00c2f30c0fb92c6274307ccb58a" # v4.1.2
uses: "actions/cache@1bd1e32a3bdc45362d1e726936510720a7c30a57" # v4.2.0
id: "pnpm-store-cache"
with:
path: "${{ steps.pnpm-config.outputs.STORE_PATH }}"
Expand All @@ -130,7 +130,7 @@ runs:
- name: "Check for node_modules cache"
if: "inputs.enable-node-modules-cache == 'true'"
id: "node-modules-cache"
uses: "actions/cache@6849a6489940f00c2f30c0fb92c6274307ccb58a" # v4.1.2
uses: "actions/cache@1bd1e32a3bdc45362d1e726936510720a7c30a57" # v4.2.0
with:
path: "/tmp/node_modules.tar.lz4"
key: "pnpm-nm-cache-${{ inputs.cache-prefix }}-${{ runner.os }}-${{ inputs.node-version }}-${{ hashFiles('**/pnpm-lock.yaml') }}"
Expand All @@ -145,7 +145,7 @@ runs:
- name: "Check for Nx cache"
if: "inputs.enable-nx-cache == 'true'"
id: "nx-cache"
uses: "actions/cache@6849a6489940f00c2f30c0fb92c6274307ccb58a" # v4.1.2
uses: "actions/cache@1bd1e32a3bdc45362d1e726936510720a7c30a57" # v4.2.0
with:
path: "/tmp/nx_cache.tar.lz4"
key: "cache-nx-${{ inputs.cache-prefix }}-${{ runner.os }}-${{ inputs.node-version }}-${{ hashFiles('pnpm-lock.yaml') }}-${{ github.sha }}"
Expand Down

0 comments on commit 3aeed8c

Please sign in to comment.