From 169ef0964242d6645cdfe87bcf9552450d997b7e Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Fri, 12 Dec 2025 15:48:00 +0000 Subject: [PATCH] chore(deps): update actions/cache action to v5 --- .github/actions/setup/action.yml | 10 +++++----- .github/workflows/check.yml | 4 ++-- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/actions/setup/action.yml b/.github/actions/setup/action.yml index 7b1d8fb6ecb..47811530679 100644 --- a/.github/actions/setup/action.yml +++ b/.github/actions/setup/action.yml @@ -84,7 +84,7 @@ runs: - name: Cache golangci-lint analysis if: ${{ inputs.language == 'go' }} - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: ~/.cache/golangci-lint key: golangci-lint-${{ inputs.version }}-${{ hashFiles('clients/algoliasearch-client-go/go.sum') }} @@ -98,14 +98,14 @@ runs: - name: Restore Yarn js-client if: ${{ inputs.language == 'javascript' }} - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: ${{ steps.yarn-cache-dir-client.outputs.dir || 'clients/algoliasearch-client-javascript/.yarn/cache' }} key: yarn-cache-clients-${{ hashFiles('clients/algoliasearch-client-javascript/yarn.lock') }} - name: Cache js-client node modules if: ${{ inputs.language == 'javascript' }} - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: clients/algoliasearch-client-javascript/node_modules key: node-modules-clients-${{ hashFiles('clients/algoliasearch-client-javascript/yarn.lock') }} @@ -183,7 +183,7 @@ runs: - name: Cache the build folder id: cache-swift-build if: ${{ inputs.language == 'swift' }} - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: | clients/algoliasearch-client-swift/.build @@ -206,7 +206,7 @@ runs: - name: Cache the build folder for swiftformat id: cache-swiftformat if: ${{ inputs.language == 'swift' }} - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: swiftformat/.build key: swiftformat-build-${{ steps.swiftformat-version.outputs.SWIFTFORMAT_VERSION }}-${{ runner.os }} diff --git a/.github/workflows/check.yml b/.github/workflows/check.yml index 20731a65efd..3ac56aba92e 100644 --- a/.github/workflows/check.yml +++ b/.github/workflows/check.yml @@ -248,13 +248,13 @@ jobs: run: echo "dir=$(cd tests/output/javascript && yarn config get cacheFolder)" >> $GITHUB_OUTPUT - name: Restore Yarn js tests - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: ${{ steps.yarn-cache-dir-tests.outputs.dir || 'tests/output/javascript/.yarn/cache' }} key: yarn-cache-tests-${{ hashFiles('tests/output/javascript/yarn.lock') }} - name: Cache js tests node modules - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: tests/output/javascript/node_modules key: node-modules-tests-${{ hashFiles('tests/output/javascript/yarn.lock') }}