File tree Expand file tree Collapse file tree 2 files changed +7
-2
lines changed Expand file tree Collapse file tree 2 files changed +7
-2
lines changed Original file line number Diff line number Diff line change 24
24
with :
25
25
node-version : 16
26
26
- name : Get cddl version
27
- run : curl -s https://crates.io/api/v1/crates/cddl | python3 -c "import sys, json; print(json.load(sys.stdin)['crate']['max_stable_version'])" | tee cddl.txt
27
+ # Remove strict version requirement here and in the test script
28
+ # once the CLI command works again.
29
+ # See: https://github.com/anweiss/cddl/issues/213
30
+ # run: curl -s https://crates.io/api/v1/crates/cddl | python3 -c "import sys, json; print(json.load(sys.stdin)['crate']['max_stable_version'])" | tee cddl.txt
31
+ run : echo "0.9.1" > cddl.txt
28
32
- name : " Cache rust binaries"
29
33
uses : actions/cache@v3
30
34
id : cache-cddl
Original file line number Diff line number Diff line change @@ -6,7 +6,8 @@ ROOT="$(dirname "$SCRIPT_DIR")"
6
6
7
7
if ! [ -x " $( command -v cddl) " ] || [ " $1 " = " --upgrade" ]; then
8
8
echo ' Installing cddl'
9
- # Remove strict version requirement once the CLI command works again
9
+ # Remove strict version requirement here and for the Rust cache
10
+ # once the CLI command works again.
10
11
# See: https://github.com/anweiss/cddl/issues/213
11
12
cargo install cddl --version 0.9.1
12
13
fi
You can’t perform that action at this time.
0 commit comments