Skip to content
Closed
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
12 changes: 6 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -200,7 +200,7 @@ jobs:
uses: dtolnay/rust-toolchain@stable

- name: Cache cargo registry
uses: actions/cache@v5
uses: actions/cache@v6
with:
path: |
~/.cargo/bin/
Expand All @@ -224,7 +224,7 @@ jobs:

- name: Cache Swagger UI zip
id: swagger-cache-test
uses: actions/cache@v5
uses: actions/cache@v6
with:
path: ${{ runner.temp }}/swagger-ui-cache
key: swagger-ui-v5.17.14-${{ runner.os }}
Expand Down Expand Up @@ -332,7 +332,7 @@ jobs:
components: llvm-tools-preview

- name: Cache cargo registry + target
uses: actions/cache@v5
uses: actions/cache@v6
with:
path: |
~/.cargo/bin/
Expand Down Expand Up @@ -464,7 +464,7 @@ jobs:
# script to the local file via SWAGGER_UI_DOWNLOAD_URL. (GAR-822)
- name: Cache Swagger UI zip
id: swagger-cache-msrv
uses: actions/cache@v5
uses: actions/cache@v6
with:
path: /tmp/swagger-ui-cache
key: swagger-ui-v5.17.14
Expand Down Expand Up @@ -547,7 +547,7 @@ jobs:
uses: dtolnay/rust-toolchain@stable

- name: Cache cargo registry
uses: actions/cache@v5
uses: actions/cache@v6
with:
path: |
~/.cargo/registry/index/
Expand Down Expand Up @@ -675,7 +675,7 @@ jobs:
uses: dtolnay/rust-toolchain@stable

- name: Cache cargo registry
uses: actions/cache@v5
uses: actions/cache@v6
with:
path: |
~/.cargo/registry/index/
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/mutants.yml
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ jobs:
- name: Cache cargo registry + target
# Isolated prefix to avoid collision with the main `ci.yml` job
# caches (which compile without mutation instrumentation).
uses: actions/cache@v5
uses: actions/cache@v6
with:
path: |
~/.cargo/bin/
Expand Down
Loading