diff --git a/.github/workflows/push-to-template.yml b/.github/workflows/push-to-template.yml index b79aaf3..1623dd9 100644 --- a/.github/workflows/push-to-template.yml +++ b/.github/workflows/push-to-template.yml @@ -15,7 +15,7 @@ jobs: id: npm-cache run: | echo "dir=$(npm config get cache)" >> "$GITHUB_OUTPUT" - - uses: actions/cache@v3 + - uses: actions/cache@v5 with: path: ${{ steps.npm-cache.outputs.dir }} key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }} diff --git a/.github/workflows/test-windows.yaml b/.github/workflows/test-windows.yaml index 6b30640..e789a15 100644 --- a/.github/workflows/test-windows.yaml +++ b/.github/workflows/test-windows.yaml @@ -21,7 +21,7 @@ jobs: id: npm-cache run: | echo "dir=$(npm config get cache)" >> "$GITHUB_OUTPUT" - - uses: actions/cache@v3 + - uses: actions/cache@v5 with: path: ${{ steps.npm-cache.outputs.dir }} key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }} diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 9983cf1..581da9d 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -20,7 +20,7 @@ jobs: id: npm-cache run: | echo "dir=$(npm config get cache)" >> "$GITHUB_OUTPUT" - - uses: actions/cache@v3 + - uses: actions/cache@v5 with: path: ${{ steps.npm-cache.outputs.dir }} key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}