Skip to content

Commit

Permalink
Update actions/cache to v4
Browse files Browse the repository at this point in the history
  • Loading branch information
westonruter committed Mar 5, 2025
1 parent 500a30d commit 70d0086
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/actions/plugin-build/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ runs:
using: 'composite'
steps:
- name: Cache assets directory
uses: actions/cache@0c45773b623bea8c8e75f6c82b208c3cf94ea4f9 #v4.0.2
uses: actions/cache@v4
id: assets-cache
env:
SEGMENT_DOWNLOAD_TIMEOUT_MINS: '5'
Expand Down
4 changes: 2 additions & 2 deletions .github/actions/setup-node-npm/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ runs:
using: 'composite'
steps:
- name: Configure Node.js cache
uses: actions/cache@0c45773b623bea8c8e75f6c82b208c3cf94ea4f9 #v4.0.2
uses: actions/cache@v4
id: node-npm-cache
env:
SEGMENT_DOWNLOAD_TIMEOUT_MINS: '5'
Expand All @@ -16,7 +16,7 @@ runs:

# Since it gets downloaded with npm install, we need to cache it instantly.
- name: Setup puppeteer cache
uses: actions/cache@0c45773b623bea8c8e75f6c82b208c3cf94ea4f9 #v4.0.2
uses: actions/cache@v4
with:
path: ~/.cache/puppeteer
key: ${{ runner.os }}-puppeteer
Expand Down
2 changes: 1 addition & 1 deletion .github/actions/setup-php-composer/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ runs:
tools: ${{ inputs.tools }}

- name: Setup composer cache
uses: actions/cache@0c45773b623bea8c8e75f6c82b208c3cf94ea4f9 #v4.0.2
uses: actions/cache@v4
id: php-composer-cache
env:
SEGMENT_DOWNLOAD_TIMEOUT_MINS: '5'
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/build-test-measure.yml
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,7 @@ jobs:
uses: ./.github/actions/setup-node-npm

- name: Setup Jest cache
uses: actions/cache@d4323d4df104b026a6aa633fdb11d772146be0bf #v4.2.2
uses: actions/cache@v4
with:
path: ~/.jest-cache
key: ${{ runner.os }}-jest
Expand Down Expand Up @@ -221,7 +221,7 @@ jobs:
uses: ./.github/actions/plugin-build

- name: Setup Jest cache
uses: actions/cache@d4323d4df104b026a6aa633fdb11d772146be0bf #v4.2.2
uses: actions/cache@v4
with:
path: ~/.jest-cache
key: ${{ runner.os }}-jest-e2e-${{ matrix.part }}
Expand Down

0 comments on commit 70d0086

Please sign in to comment.