diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 8186e29..426811c 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -42,7 +42,7 @@ jobs: echo "pnpm_cache_dir=$(pnpm store path)" >> $GITHUB_OUTPUT - name: Cache pnpm Store - uses: actions/cache@v4.2.3 # Action provides caching dependencies and build outputs to improve workflow execution time. + uses: actions/cache@v5.0.5 # Action provides caching dependencies and build outputs to improve workflow execution time. with: path: ${{ steps.pnpm-cache.outputs.pnpm_cache_dir }} # The path of the directory to cache. key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }} # An explicit key for restoring and saving the cache. diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 74fe055..1373e75 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -41,7 +41,7 @@ jobs: echo "pnpm_cache_dir=$(pnpm store path)" >> $GITHUB_OUTPUT - name: Cache pnpm Store - uses: actions/cache@v4.2.3 # Action provides caching dependencies and build outputs to improve workflow execution time. + uses: actions/cache@v5.0.5 # Action provides caching dependencies and build outputs to improve workflow execution time. with: path: ${{ steps.pnpm-cache.outputs.pnpm_cache_dir }} # The path of the directory to cache. key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }} # An explicit key for restoring and saving the cache.