Skip to content

Commit c6f9a57

Browse files
authored
Fix actions/cache version (#158)
1 parent c8c51a3 commit c6f9a57

File tree

2 files changed

+4
-5
lines changed

2 files changed

+4
-5
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ jobs:
4848
id: toolchain
4949
- run: rustup override set ${{steps.toolchain.outputs.name}}
5050

51-
- uses: actions/cache@v2
51+
- uses: actions/cache@v4
5252
with:
5353
path: |
5454
~/.cargo/registry
@@ -81,8 +81,7 @@ jobs:
8181
with:
8282
command: test
8383
args: "--all \
84-
--all-features \
85-
--exclude cp-benches "
84+
--all-features"
8685

8786
docs:
8887
name: Check Documentation
@@ -116,7 +115,7 @@ jobs:
116115
target: aarch64-unknown-none
117116
- run: rustup override set ${{steps.toolchain-aarch64.outputs.name}}
118117

119-
- uses: actions/cache@v2
118+
- uses: actions/cache@v4
120119
with:
121120
path: |
122121
~/.cargo/registry

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@
4343
- [\#145](https://github.com/arkworks-rs/r1cs-std/pull/145)
4444
- Avoid deeply nested `LinearCombinations` in `EvaluationsVar::interpolate_and_evaluate` to fix the stack overflow issue when calling `.value()` on the evaluation result.
4545
- [\#148](https://github.com/arkworks-rs/r1cs-std/pull/148)
46-
- Fix panic issues during in-circuit polynomial interpolation.
46+
- Fix panic issues during in-circuit polynomial interpolation.
4747

4848
## 0.4.0
4949

0 commit comments

Comments
 (0)