diff --git a/cache-node/action.yml b/cache-node/action.yml index 9ed09c7..771f64d 100644 --- a/cache-node/action.yml +++ b/cache-node/action.yml @@ -7,7 +7,7 @@ outputs: runs: using: composite steps: - - uses: actions/cache@v4 + - uses: actions/cache@v5 id: node-cache with: path: '**/node_modules' @@ -15,7 +15,7 @@ runs: - 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 }} diff --git a/cache-turbo/action.yml b/cache-turbo/action.yml index 6d3ee67..0ff8537 100644 --- a/cache-turbo/action.yml +++ b/cache-turbo/action.yml @@ -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