summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatthias Beyer <mail@beyermatthias.de>2023-10-26 14:01:50 +0200
committerMatthias Beyer <mail@beyermatthias.de>2024-02-01 07:38:06 +0100
commit47af0957eca221989859dabd972e302c92dd48e5 (patch)
tree7c921f22ec516e1dbd818dbee2f6e9be8fffffe4
parenta9a48526d8f7270f2daaba6bf2abe41e0a34c68d (diff)
Do not depend on changing toolchain version
If stable updates and introduces a new lint for example, that could break our CI "randomly". Thus, we do no longer depend on a mutable version of the toolchain, but on a fixed one (that now has to be updated regularly, of course). Signed-off-by: Matthias Beyer <mail@beyermatthias.de>
-rw-r--r--.github/workflows/msrv.yml4
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/msrv.yml b/.github/workflows/msrv.yml
index b4956f2..fcbe122 100644
--- a/.github/workflows/msrv.yml
+++ b/.github/workflows/msrv.yml
@@ -10,7 +10,7 @@ jobs:
matrix:
rust:
- 1.70.0
- - stable
+ - 1.73.0 # stable
- beta
steps:
@@ -36,7 +36,7 @@ jobs:
matrix:
rust:
- 1.70.0
- - stable
+ - 1.73.0 # stable
- beta
steps:
- name: Checkout sources