Skip to content
Open
Show file tree
Hide file tree
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
4 changes: 2 additions & 2 deletions cache-node/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,15 +7,15 @@ outputs:
runs:
using: composite
steps:
- uses: actions/cache@v4
- uses: actions/cache@v5
id: node-cache
with:
path: '**/node_modules'
key: node-modules-${{ runner.os }}-${{ hashFiles('**/yarn.lock') }}
- run: echo "dir=$(yarn config get cacheFolder)" >> $GITHUB_OUTPUT
shell: bash
id: yarn-cache-dir-path
- uses: actions/cache@v4
- uses: actions/cache@v5
if: steps.yarn-cache-dir-path.outputs.dir != 'undefined'
with:
path: ${{ steps.yarn-cache-dir-path.outputs.dir }}
Expand Down
2 changes: 1 addition & 1 deletion cache-turbo/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ runs:
- id: get-date
run: echo "date=$(/bin/date -u "+%Y%m%d")" >> $GITHUB_OUTPUT
shell: bash
- uses: actions/cache@v4
- uses: actions/cache@v5
id: turbo-cache
with:
path: node_modules/.cache/turbo
Expand Down