Skip to content

Commit b7e149d

Browse files
committed
Fix zeroize MSRV
1 parent 19bac2b commit b7e149d

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

.github/workflows/test.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,10 @@ jobs:
4141
rustup default ${{ matrix.rust }}
4242
- name: Checkout
4343
uses: actions/checkout@v4
44+
- name: Pin `zeroize` for MSRV
45+
if: matrix.rust == '1.57.0'
46+
run:
47+
cargo update -p zeroize --precise 1.6.0
4448
- name: Build
4549
run:
4650
cargo build --workspace ${{ matrix.features }}
@@ -89,6 +93,10 @@ jobs:
8993
rustup default ${{ matrix.rust }}
9094
- name: Checkout
9195
uses: actions/checkout@v4
96+
- name: Pin `zeroize` for MSRV
97+
if: matrix.rust == '1.57.0'
98+
run:
99+
cargo update -p zeroize --precise 1.6.0
92100
- name: Build
93101
run:
94102
cargo build --target thumbv6m-none-eabi ${{ matrix.features }} -p ensure-no-std

0 commit comments

Comments
 (0)