Skip to content

Commit

Permalink
use normal cache for metrics-report-action
Browse files Browse the repository at this point in the history
getting some weird warnings
  • Loading branch information
dcastil committed Jun 22, 2024
1 parent f27d6e1 commit da8bff5
Showing 1 changed file with 2 additions and 7 deletions.
9 changes: 2 additions & 7 deletions .github/workflows/metrics-report.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,17 +26,12 @@ jobs:
with:
path: node_modules
key: yarn-node-20-lock-${{ hashFiles('yarn.lock') }}
- name: Restore node_modules cache for metrics-report-action
uses: actions/cache/restore@v4
- name: Use node_modules cache for metrics-report-action
uses: actions/cache@v4
with:
path: .github/actions/metrics-report/node_modules
key: yarn-node-20-metrics-report-action-lock-${{ hashFiles('.github/actions/metrics-report/yarn.lock') }}
restore-keys: |
yarn-node-20-metrics-report-action-lock-
- run: yarn --cwd .github/actions/metrics-report install --frozen-lockfile
- name: Save node_modules cache for metrics-report-action
uses: actions/cache/save@v4
with:
path: .github/actions/metrics-report/node_modules
key: yarn-node-20-metrics-report-action-lock-${{ hashFiles('.github/actions/metrics-report/yarn.lock') }}
- uses: ./.github/actions/metrics-report

0 comments on commit da8bff5

Please sign in to comment.