Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions .github/actions/setup/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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') }}
Expand All @@ -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') }}
Expand Down Expand Up @@ -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
Expand All @@ -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 }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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') }}
Expand Down
Loading