Bump MSRV to 1.64

This commit is contained in:
Jonathan de Jong
2022-10-26 17:22:23 +02:00
committed by GitHub
parent c7e84c5249
commit 7e1fd603e6
15 changed files with 18 additions and 18 deletions

View File

@@ -73,7 +73,7 @@ jobs:
run: target/debug/xtask ci lint
msrv:
name: Rust 1.62 / ${{ matrix.name }}
name: Rust 1.64 / ${{ matrix.name }}
needs: xtask
runs-on: ubuntu-latest
strategy:
@@ -98,11 +98,11 @@ jobs:
- name: Checkout repo
uses: actions/checkout@v2
- name: Install rust 1.62 toolchain
- name: Install rust 1.64 toolchain
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: "1.62"
toolchain: "1.64"
# Used to compile xtask
- name: Install rust stable toolchain
@@ -117,7 +117,7 @@ jobs:
# A stable compiler update should automatically not reuse old caches.
# Add the MSRV as a stable cache key too so bumping it also gets us a
# fresh cache.
sharedKey: msrv1.62
sharedKey: msrv1.64
- name: Get xtask
uses: actions/cache@v3