Skip to content

Commit eaa2d6e

Browse files
committed
Update msrv for gh action
1 parent ecaa42d commit eaa2d6e

File tree

1 file changed

+7
-6
lines changed

1 file changed

+7
-6
lines changed

.github/workflows/linux.yml

+7-6
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
fail-fast: false
99
matrix:
1010
version:
11-
- 1.65.0 # MSRV
11+
- 1.75.0 # MSRV
1212
- stable
1313
- nightly
1414

@@ -50,7 +50,7 @@ jobs:
5050
key: ${{ matrix.version }}-x86_64-unknown-linux-gnu-cargo-index-trimmed-${{ hashFiles('**/Cargo.lock') }}
5151

5252
- name: Cache cargo tarpaulin
53-
if: matrix.version == '1.65.0' && (github.ref == 'refs/heads/master' || github.event_name == 'pull_request')
53+
if: matrix.version == '1.75.0' && (github.ref == 'refs/heads/master' || github.event_name == 'pull_request')
5454
uses: actions/cache@v1
5555
with:
5656
path: ~/.cargo/bin
@@ -64,19 +64,19 @@ jobs:
6464
args: --all --all-features --no-fail-fast -- --nocapture
6565

6666
- name: Install tarpaulin
67-
if: matrix.version == '1.65.0' && (github.ref == 'refs/heads/master' || github.event_name == 'pull_request')
67+
if: matrix.version == '1.75.0' && (github.ref == 'refs/heads/master' || github.event_name == 'pull_request')
6868
continue-on-error: true
6969
run: |
7070
cargo install cargo-tarpaulin
7171
7272
- name: Generate coverage report
73-
if: matrix.version == '1.65.0' && (github.ref == 'refs/heads/master' || github.event_name == 'pull_request')
73+
if: matrix.version == '1.75.0' && (github.ref == 'refs/heads/master' || github.event_name == 'pull_request')
7474
continue-on-error: true
7575
run: |
7676
cargo tarpaulin --out Xml --all --all-features
7777
7878
- name: Upload to Codecov
79-
if: matrix.version == '1.65.0' && (github.ref == 'refs/heads/master' || github.event_name == 'pull_request')
79+
if: matrix.version == '1.75.0' && (github.ref == 'refs/heads/master' || github.event_name == 'pull_request')
8080
continue-on-error: true
8181
uses: codecov/codecov-action@v1
8282
with:
@@ -85,8 +85,9 @@ jobs:
8585
- name: Install cargo-cache
8686
continue-on-error: true
8787
run: |
88-
cargo install cargo-cache --version 0.6.2 --no-default-features --features ci-autoclean
88+
cargo install cargo-cache --no-default-features --features ci-autoclean
8989
9090
- name: Clear the cargo caches
91+
continue-on-error: true
9192
run: |
9293
cargo-cache

0 commit comments

Comments
 (0)