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
2 changes: 1 addition & 1 deletion .github/workflows/test-rust-sdk.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
components: clippy

- name: Cache cargo registry
uses: actions/cache@v4
uses: actions/cache@v5
with:
path: |
~/.cargo/registry
Expand Down
20 changes: 10 additions & 10 deletions .github/workflows/test-server.yml
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ jobs:

- name: Restore native lib
id: napi_restore
uses: actions/cache/restore@v4
uses: actions/cache/restore@v5
with:
path: |
apps/api/native/*.node
Expand All @@ -92,7 +92,7 @@ jobs:

- name: Cache native lib
if: steps.napi_restore.outputs.cache-hit != 'true'
uses: actions/cache/save@v4
uses: actions/cache/save@v5
with:
path: |
apps/api/native/*.node
Expand All @@ -107,7 +107,7 @@ jobs:

- name: Restore Go lib
id: golib_restore
uses: actions/cache/restore@v4
uses: actions/cache/restore@v5
with:
path: apps/api/sharedLibs/go-html-to-md/libhtml-to-markdown.so
key: ${{ runner.os }}-golib-${{ hashFiles('apps/api/sharedLibs/go-html-to-md/go.sum', 'apps/api/sharedLibs/go-html-to-md/*.go') }}
Expand All @@ -121,15 +121,15 @@ jobs:

- name: Cache Go lib
if: steps.golib_restore.outputs.cache-hit != 'true'
uses: actions/cache/save@v4
uses: actions/cache/save@v5
with:
path: apps/api/sharedLibs/go-html-to-md/libhtml-to-markdown.so
key: ${{ steps.golib_restore.outputs.cache-primary-key }}

- name: Restore Playwright cache
if: matrix.engine == 'playwright'
id: pw_cache
uses: actions/cache/restore@v4
uses: actions/cache/restore@v5
with:
path: ~/.cache/ms-playwright
key: ${{ runner.os }}-${{ runner.arch }}-pw-chromium-${{ hashFiles('apps/playwright-service-ts/pnpm-lock.yaml', 'apps/playwright-service-ts/package.json') }}
Expand All @@ -146,7 +146,7 @@ jobs:

- name: Cache Playwright
if: steps.pw_cache.outputs.cache-hit != 'true'
uses: actions/cache/save@v4
uses: actions/cache/save@v5
with:
path: ~/.cache/ms-playwright
key: ${{ steps.pw_cache.outputs.cache-primary-key }}
Expand Down Expand Up @@ -313,7 +313,7 @@ jobs:

# - name: Restore native lib
# id: napi_restore
# uses: actions/cache/restore@v4
# uses: actions/cache/restore@v5
# with:
# path: |
# apps/api/native/*.node
Expand All @@ -329,7 +329,7 @@ jobs:

# - name: Cache native lib
# if: steps.napi_restore.outputs.cache-hit != 'true'
# uses: actions/cache/save@v4
# uses: actions/cache/save@v5
# with:
# path: |
# apps/api/native/*.node
Expand All @@ -344,7 +344,7 @@ jobs:

# - name: Restore Go lib
# id: golib_restore
# uses: actions/cache/restore@v4
# uses: actions/cache/restore@v5
# with:
# path: apps/api/sharedLibs/go-html-to-md/libhtml-to-markdown.so
# key: ${{ runner.os }}-golib-${{ hashFiles('apps/api/sharedLibs/go-html-to-md/go.sum', 'apps/api/sharedLibs/go-html-to-md/*.go') }}
Expand All @@ -358,7 +358,7 @@ jobs:

# - name: Cache Go lib
# if: steps.golib_restore.outputs.cache-hit != 'true'
# uses: actions/cache/save@v4
# uses: actions/cache/save@v5
# with:
# path: apps/api/sharedLibs/go-html-to-md/libhtml-to-markdown.so
# key: ${{ steps.golib_restore.outputs.cache-primary-key }}
Expand Down
Loading