diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 16f21de..e7a5d02 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -47,11 +47,11 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@master - - name: Install minimal nightly with clippy and rustfmt + - name: Install minimal stable with clippy and rustfmt uses: actions-rs/toolchain@v1 with: profile: minimal - toolchain: nightly + toolchain: stable components: clippy override: true @@ -66,11 +66,11 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@master - - name: Install minimal nightly with clipy + - name: Install minimal stable with rustfmt uses: actions-rs/toolchain@v1 with: profile: minimal - toolchain: nightly + toolchain: stable components: rustfmt override: true