From b7e149df10be41c3260dbb5108f7ae465a9a28a3 Mon Sep 17 00:00:00 2001 From: daxpedda Date: Mon, 4 Dec 2023 17:37:40 +0100 Subject: [PATCH] Fix `zeroize` MSRV --- .github/workflows/test.yml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index d8a38d7..929f2c3 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -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 }} @@ -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