chore(deps): update github-actions

This commit is contained in:
renovate[bot]
2026-03-19 16:43:25 +00:00
committed by GitHub
parent faab20ac2f
commit e29a757724
4 changed files with 12 additions and 12 deletions

View File

@@ -187,7 +187,7 @@ runs:
printf " %-16s %s\n" "nodeVersion:" "${node_version}"
echo "::endgroup::"
- uses: pnpm/action-setup@v4 # https://github.com/pnpm/action-setup?tab=readme-ov-file#inputs
- uses: pnpm/action-setup@v5 # https://github.com/pnpm/action-setup?tab=readme-ov-file#inputs
if: steps.prepare.outputs.pnpmInstalled == 'false'
with:
# https://github.com/pnpm/action-setup/blob/master/action.yml
@@ -208,7 +208,7 @@ runs:
echo "pnpmStoreDir=$(pnpm store path)" >> $GITHUB_OUTPUT
- id: cache-pnpm-restore
uses: actions/cache/restore@v4 # https://github.com/actions/cache/blob/main/restore/action.yml
uses: actions/cache/restore@v5 # https://github.com/actions/cache/blob/main/restore/action.yml
if: steps.prepare.outputs.pnpmLockExists == 'true'
with:
path: ${{ steps.pnpm-store-dir.outputs.pnpmStoreDir }}
@@ -252,7 +252,7 @@ runs:
- id: cache-pnpm-save
if: always() && steps.prepare.outputs.pnpmLockExists == 'true' && steps.cache-pnpm-restore.outputs.cache-hit != 'true'
uses: actions/cache/save@v4
uses: actions/cache/save@v5
with:
path: ${{ steps.pnpm-store-dir.outputs.pnpmStoreDir }}
key: ${{ steps.cache-pnpm-restore.outputs.cache-primary-key }}