Skip to content

Commit

Permalink
Fix zeroize MSRV
Browse files Browse the repository at this point in the history
  • Loading branch information
daxpedda committed Dec 4, 2023
1 parent 19bac2b commit 76d79e7
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,10 @@ jobs:
rustup default ${{ matrix.rust }}
- name: Checkout
uses: actions/checkout@v4
- name: Pin `zeroize` for MSRV
if: matrix.rust == '1.57.0'
run:
cargo update -p zeroize --precise 1.6.0
- name: Build
run:
cargo build --workspace ${{ matrix.features }}
Expand Down Expand Up @@ -89,6 +93,10 @@ jobs:
rustup default ${{ matrix.rust }}
- name: Checkout
uses: actions/checkout@v4
- name: Pin `zeroize` for MSRV
if: matrix.rust == '1.57.0'
run:
cargo update -p zeroize --precise 1.6.0
- name: Build
run:
cargo build --target thumbv6m-none-eabi ${{ matrix.features }} -p ensure-no-std
Expand Down

0 comments on commit 76d79e7

Please sign in to comment.