Skip to content

Commit

Permalink
chore: upgrade to Rust 1.52 for CI
Browse files Browse the repository at this point in the history
  • Loading branch information
rawkode committed Jun 2, 2021
1 parent a38f25d commit d4bef1e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name: release

env:
MIN_SUPPORTED_RUST_VERSION: "1.45.0"
MIN_SUPPORTED_RUST_VERSION: "1.52.0"
CICD_INTERMEDIATES_DIR: "_cicd-intermediates"

on:
Expand Down Expand Up @@ -110,7 +110,7 @@ jobs:
- name: Install Rust Toolchain
uses: actions-rs/toolchain@v1
with:
toolchain: stable
toolchain: ${{ env.MIN_SUPPORTED_RUST_VERSION }}
target: ${{ matrix.job.target }}
override: true
profile: minimal
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/pull-request.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name: pull-request

env:
MIN_SUPPORTED_RUST_VERSION: "1.45.0"
MIN_SUPPORTED_RUST_VERSION: "1.52.0"

on:
pull_request:
Expand All @@ -27,7 +27,7 @@ jobs:
- name: Install stable toolchain
uses: actions-rs/toolchain@v1
with:
toolchain: stable
toolchain: ${{ env.MIN_SUPPORTED_RUST_VERSION }}
profile: minimal
components: clippy,rustfmt
override: true
Expand Down

0 comments on commit d4bef1e

Please sign in to comment.