Skip to content

Commit

Permalink
Merge pull request tafia#733 from Mingun/update-action
Browse files Browse the repository at this point in the history
Update checkout and codecov actions to the latest versions
  • Loading branch information
Mingun committed Mar 31, 2024
2 parents 29962e7 + 8fc158a commit 6e34a73
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,21 +6,21 @@ jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Check fmt
run: cargo fmt -- --check

msrv:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@1.56.0
- run: cargo check

minimal-versions:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Install tools
run: cargo install cargo-hack cargo-minimal-versions
- name: Install nightly rust
Expand All @@ -46,7 +46,7 @@ jobs:
RUSTFLAGS: -C instrument-coverage

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Install coverage reporter (llvm-tools-preview)
if: runner.os == 'Linux'
run: rustup component add llvm-tools-preview
Expand Down Expand Up @@ -96,7 +96,7 @@ jobs:
-o ./coverage.lcov
- name: Upload coverage to codecov.io
if: runner.os == 'Linux'
uses: codecov/codecov-action@v2
uses: codecov/codecov-action@v4
with:
files: ./coverage.lcov
flags: unittests
Expand Down

0 comments on commit 6e34a73

Please sign in to comment.