Skip to content

Commit

Permalink
Update deprecated rust actions in CI action
Browse files Browse the repository at this point in the history
Signed-off-by: Lee Smet <[email protected]>
  • Loading branch information
LeeSmet committed Feb 28, 2024
1 parent 7ef3d0b commit 0085880
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 5 deletions.
14 changes: 9 additions & 5 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,15 +17,19 @@ jobs:
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
with:
components: clippy
- name: Build
run: cargo build --verbose
- name: Run tests
run: cargo test --verbose
- uses: actions-rs/cargo@v1
- uses: mbrobbel/rustfmt-check@master
with:
command: fmt
args: --all -- --check
- uses: actions-rs/clippy-check@v1
with:
mode: review
token: ${{ secrets.GITHUB_TOKEN }}
args: -- -D warnings
- uses: giraffate/clippy-action@v1
with:
clippy-flags: -- -D warnings
github_token: ${{ secrets.GITHUB_TOKEN }}
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Changed

- Update GitHub CI action to use latest version of the checkout action.
- Update GitHub CI action to stop using deprecated actions-rs actions.

## [0.4.2] - 2024-02-28

Expand Down

0 comments on commit 0085880

Please sign in to comment.