From 983091b28f7c461c22ab7c0f87e30fb5e80b2e02 Mon Sep 17 00:00:00 2001 From: Volker Mische Date: Wed, 18 Oct 2023 13:15:43 +0200 Subject: [PATCH] chore: hard code MSRV to see if it get picked up --- .github/workflows/ci.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index ef4ba18..b8d160b 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -16,7 +16,8 @@ jobs: run: MSRV=$(cargo metadata --format-version 1 --no-deps | jq -r '.packages[0].rust_version') - name: Set MSRV as output id: msrv - run: echo "MSRV=$MSRV" >> "$GITHUB_OUTPUT" + #run: echo "MSRV=$MSRV" >> "$GITHUB_OUTPUT" + run: echo "MSRV=1.70" >> "$GITHUB_OUTPUT" ## NOTE vmx 2022-06-14: currently doesn't work, hence run it on CircleCI ## for now.