Skip to content

Commit

Permalink
chore: Update actions/cache to v4.2.1 (#577)
Browse files Browse the repository at this point in the history
  • Loading branch information
lym953 authored Feb 19, 2025
1 parent faa0d56 commit 3cfe2c9
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:

- name: Cache Node modules
id: cache-node-modules
uses: actions/cache@v3
uses: actions/cache@0c907a75c2c80ebcb7f088228285e798b750cf8f # v4.2.1
with:
path: "**/node_modules"
key: ${{ runner.os }}-modules-${{ hashFiles('**/yarn.lock') }}
Expand Down Expand Up @@ -56,7 +56,7 @@ jobs:

- name: Cache Node modules
id: cache-node-modules
uses: actions/cache@v3
uses: actions/cache@0c907a75c2c80ebcb7f088228285e798b750cf8f # v4.2.1
with:
path: "**/node_modules"
key: ${{ runner.os }}-modules-${{ hashFiles('**/yarn.lock') }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/integration_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:

- name: Cache Node modules
id: cache-node-modules
uses: actions/cache@v3
uses: actions/cache@0c907a75c2c80ebcb7f088228285e798b750cf8f # v4.2.1
with:
path: "**/node_modules"
key: ${{ runner.os }}-modules-${{ hashFiles('**/yarn.lock') }}
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/monitor_api_integration_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ on:
schedule:
# 1pm UTC (9am EDT, 8am EST), every day
- cron: "0 13 * * *"
workflow_dispatch:

jobs:
integration-tests:
Expand All @@ -20,7 +21,7 @@ jobs:

- name: Cache Node modules
id: cache-node-modules
uses: actions/cache@v3
uses: actions/cache@0c907a75c2c80ebcb7f088228285e798b750cf8f # v4.2.1
with:
path: "**/node_modules"
key: ${{ runner.os }}-modules-${{ hashFiles('**/yarn.lock') }}
Expand Down

0 comments on commit 3cfe2c9

Please sign in to comment.