Update rust toolchain to 1.45.0

This commit is contained in:
Alexander Krotov
2020-07-16 22:41:38 +03:00
committed by link2xt
parent 933b14eedf
commit 1c73021d77
6 changed files with 11 additions and 15 deletions

View File

@@ -18,7 +18,7 @@ jobs:
- uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: 1.43.1
toolchain: 1.45.0
override: true
- run: rustup component add rustfmt
- uses: actions-rs/cargo@v1
@@ -32,7 +32,7 @@ jobs:
- uses: actions/checkout@v1
- uses: actions-rs/toolchain@v1
with:
toolchain: 1.43.1
toolchain: 1.45.0
components: clippy
override: true
- uses: actions-rs/clippy-check@v1
@@ -46,7 +46,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macOS-latest]
rust: [nightly, 1.43.1]
rust: [nightly, 1.45.0]
steps:
- uses: actions/checkout@master