Skip to content

Commit

Permalink
chore(deps): update actions/cache action to v4.1.1 (#74)
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 Oct 14, 2024
1 parent 4ba851a commit 4901998
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@0c45773b623bea8c8e75f6c82b208c3cf94ea4f9" # v4.0.2
uses: "actions/cache@3624ceb22c1c5a301c8db4169662070a689d9ea8" # v4.1.1
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@0c45773b623bea8c8e75f6c82b208c3cf94ea4f9" # v4.0.2
uses: "actions/cache@3624ceb22c1c5a301c8db4169662070a689d9ea8" # v4.1.1
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@0c45773b623bea8c8e75f6c82b208c3cf94ea4f9" # v4.0.2
uses: "actions/cache@3624ceb22c1c5a301c8db4169662070a689d9ea8" # v4.1.1
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 4901998

Please sign in to comment.