Skip to content

Commit 774f518

Browse files
committed
Downgrade once_cell for MSRV jobs
1 parent d0907e9 commit 774f518

File tree

2 files changed

+8
-1
lines changed

2 files changed

+8
-1
lines changed

.github/workflows/ci.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,9 @@ jobs:
2828
override: true
2929
- name: Checkout
3030
uses: actions/checkout@v3
31+
- name: MSRV dependencies
32+
if: matrix.rust == '1.66.0'
33+
run: make msrv-lock
3134
- name: Check
3235
env:
3336
CARGO_BUILD_TARGET: ${{ matrix.target }}
@@ -76,7 +79,8 @@ jobs:
7679
run: |
7780
sudo apt-get update
7881
sudo apt-get install gcc-multilib
79-
- name: Copy MSRV Lock
82+
- name: MSRV dependencies
83+
if: matrix.rust == '1.66.0'
8084
run: make msrv-lock
8185
- name: Test
8286
env:

Makefile

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,4 +33,7 @@ lint:
3333
@rustup component add clippy 2> /dev/null
3434
@cargo clippy --examples --tests --all-features -- --deny warnings
3535

36+
msrv-lock:
37+
@cargo update -p once_cell --precise 1.20.3
38+
3639
.PHONY: all doc build check test format format-check lint check-minver msrv-lock

0 commit comments

Comments
 (0)