From 37eff69a37c506cf044195340fccb15dff395729 Mon Sep 17 00:00:00 2001 From: Jason Ish Date: Wed, 30 Dec 2020 11:24:17 -0600 Subject: [PATCH] github-ci: update min Rust version from 1.34.2 to 1.41.1 --- .github/workflows/builds.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/builds.yml b/.github/workflows/builds.yml index 0155c81811..d1e935eb1f 100644 --- a/.github/workflows/builds.yml +++ b/.github/workflows/builds.yml @@ -25,6 +25,9 @@ env: # A known good Rust version we should test against. RUST_VERSION_KNOWN: "1.37.0" + # The minimum version of Rust supported. + RUST_VERSION_MIN: "1.41.1" + jobs: prepare-deps: @@ -969,7 +972,7 @@ jobs: zlib1g \ zlib1g-dev - name: Install Rust - run: curl https://sh.rustup.rs -sSf | sh -s -- --default-toolchain 1.34.2 -y + run: curl https://sh.rustup.rs -sSf | sh -s -- --default-toolchain ${RUST_VERSION_MIN} -y - run: echo "$HOME/.cargo/bin" >> $GITHUB_PATH - name: Download suricata.tar.gz uses: actions/download-artifact@v2