Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ jobs:
- name: Get yarn cache dir
run: echo "yarn_cache=$(yarn cache dir)" >> "$GITHUB_ENV"
- name: Cache node modules
uses: actions/cache@v5
uses: actions/cache@v6
id: cache_node_modules
with:
key: node-${{ hashFiles('admin-js/package.json') }}-${{ github.run_id }}
Expand All @@ -80,7 +80,7 @@ jobs:
run: yarn install --production
working-directory: admin-js/
- name: Cache output files
uses: actions/cache@v5
uses: actions/cache@v6
id: cache_admin_js
with:
key: yarn-${{ hashFiles('admin-js/src/*') }}-${{ hashFiles('admin-js/yarn.lock') }}
Expand Down Expand Up @@ -113,7 +113,7 @@ jobs:
cache: 'pip'
cache-dependency-path: '**/requirements*.txt'
- name: Restore cached JS files
uses: actions/cache/restore@v5
uses: actions/cache/restore@v6
with:
key: yarn-${{ hashFiles('admin-js/src/*') }}
fail-on-cache-miss: true
Expand Down Expand Up @@ -155,7 +155,7 @@ jobs:
- name: Get yarn cache dir
run: echo "yarn_cache=$(yarn cache dir)" >> "$GITHUB_ENV"
- name: Cache node modules
uses: actions/cache@v5
uses: actions/cache@v6
with:
key: node-${{ hashFiles('admin-js/package.json') }}-${{ github.run_id }}
restore-keys: node-${{ hashFiles('admin-js/package.json') }}
Expand All @@ -172,7 +172,7 @@ jobs:
cache: 'pip'
cache-dependency-path: '**/requirements*.txt'
- name: Restore cached JS files
uses: actions/cache/restore@v5
uses: actions/cache/restore@v6
with:
key: yarn-${{ hashFiles('admin-js/src/*') }}
fail-on-cache-miss: true
Expand Down
Loading