Skip to content

Commit d67d5ca

Browse files
committed
CI: pin syn to keep rustc 1.70 compatibility
1 parent 7be8a80 commit d67d5ca

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

.github/workflows/lints-stable.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,9 +56,11 @@ jobs:
5656
- name: Add target
5757
working-directory: ./ci-build
5858
run: rustup target add ${{ matrix.target }}
59-
- name: Pin unicode-ident to version compatible with rustc 1.70
59+
- name: Pin deps to versions compatible with rustc 1.70
6060
working-directory: ./ci-build
61-
run: cargo update -p unicode-ident --precise 1.0.22
61+
run: |
62+
cargo update -p unicode-ident --precise 1.0.12
63+
cargo update -p syn --precise 2.0.114
6264
- name: Clippy no_std for target
6365
working-directory: ./ci-build
6466
run: cargo clippy --verbose --target ${{ matrix.target }}

0 commit comments

Comments
 (0)