Skip to content
Open
Show file tree
Hide file tree
Changes from 1 commit
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
4 changes: 2 additions & 2 deletions .github/workflows/_release_python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
- name: Set up cargo cache
uses: actions/cache@v3
uses: actions/cache@v6
continue-on-error: false
with:
path: |
Expand Down Expand Up @@ -169,7 +169,7 @@ jobs:
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
- name: Set up cargo cache
uses: actions/cache@v3
uses: actions/cache@v6
continue-on-error: false
with:
path: |
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/code_coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,14 +23,14 @@
with:
ref: ${{ github.head_ref }}
- name: Cache sccache
uses: actions/cache@v3
uses: actions/cache@v6
with:
path: /home/runner/.cache/sccache
key: codecov-${{ runner.os }}-sccache-${{ hashFiles('**/Cargo.lock') }}
restore-keys: |
codecov-${{ runner.os }}-sccache-
- name: Set up cargo cache
uses: actions/cache@v3
uses: actions/cache@v6
continue-on-error: false
with:
path: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release_bump_versions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Set up cargo cache
uses: actions/cache@v3
uses: actions/cache@v6
continue-on-error: false
with:
path: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test_ui.yml
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ jobs:
esac
- name: Cache playwright browsers
id: pw-cache
uses: actions/cache@v4
uses: actions/cache@v6
with:
path: ${{ steps.pw-cache-dir.outputs.dir }}
key: playwright-${{ runner.os }}-${{ matrix.browser }}-${{ hashFiles('ui-tests/package-lock.json') }}
Expand Down
Loading