diff --git a/.github/workflows/audit.yml b/.github/workflows/audit.yml index 599be86..66f0b1f 100644 --- a/.github/workflows/audit.yml +++ b/.github/workflows/audit.yml @@ -20,9 +20,6 @@ jobs: osname: "linux-x64" - os: windows-latest osname: "win-x64" - - os: windows-latest - osname: "win-x86" - toolchain: "stable-i686-pc-windows-msvc" env: BIN_PATH: ./target/release steps: @@ -43,7 +40,7 @@ jobs: - uses: actions-rs/toolchain@v1 with: profile: minimal - toolchain: ${{ matrix.toolchain || 'stable' }} + toolchain: stable override: true - name: Install audit dependencies shell: bash diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 94a0ada..79caa92 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -103,9 +103,6 @@ jobs: osname: "linux-x64" - os: windows-latest osname: "win-x64" - - os: windows-latest - osname: "win-x86" - toolchain: "stable-i686-pc-windows-msvc" env: ZIP_NAME: ${{ github.event.repository.name }}-ci-${{ github.sha }}-${{ matrix.osname }} BIN_PATH: ./target/release @@ -128,7 +125,7 @@ jobs: - uses: actions-rs/toolchain@v1 with: profile: minimal - toolchain: ${{ matrix.toolchain || 'stable' }} + toolchain: stable override: true - uses: actions-rs/cargo@v1 with: