From 0f0a9cea1fba72cd09dde0da257dc4170cba6411 Mon Sep 17 00:00:00 2001 From: Simon Dugas Date: Sun, 31 Jan 2021 20:58:26 -0500 Subject: [PATCH] ci: update known rust version Update RUST_VERSION_KNOWN to the latest stable known to succeed. Also updates the documentation to avoid confusion around the use of this variable. (cherry picked from commit f629321de06043214e69a56d8259a1e781535293) --- .github/workflows/builds.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/builds.yml b/.github/workflows/builds.yml index 736020e9f5e0..21011a4fa5b5 100644 --- a/.github/workflows/builds.yml +++ b/.github/workflows/builds.yml @@ -22,8 +22,10 @@ env: # Apt sometimes likes to ask for user input, this will prevent that. DEBIAN_FRONTEND: "noninteractive" - # A known good Rust version we should test against. - RUST_VERSION_KNOWN: "1.37.0" + # A recent version of stable Rust that is known to pass build, test and other + # verification steps in this workflow. This was added because using "stable" + # could cause some steps to fail. + RUST_VERSION_KNOWN: "1.49.0" jobs: