Bump serde from 1.0.164 to 1.0.179 (#52) #49
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: rust-clippy fix | |
on: | |
push: | |
branches: ["master"] | |
jobs: | |
rust-clippy-analyze: | |
name: Run rust-clippy analyzing | |
runs-on: ubuntu-latest | |
permissions: | |
contents: read | |
security-events: write | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
- name: Install Rust toolchain | |
uses: actions-rs/toolchain@v1 | |
with: | |
profile: minimal | |
toolchain: beta | |
components: clippy | |
override: true | |
- uses: Swatinem/rust-cache@v2 | |
- name: Run rust-clippy | |
run: cargo clippy | |
--all-features | |
--no-deps | |
--fix | |
- name: Create Pull Request | |
uses: peter-evans/create-pull-request@v4 | |
with: | |
title: Apply clippy fix | |
commit-message: "CI: apply clippy fix" | |
token: ${{ secrets.PAT }} | |
body: | | |
Auto-generated by [create-pull-request][1] | |
[1]: https://github.com/peter-evans/create-pull-request | |
labels: | | |
automated pr | |
branch: clippy-fix | |
branch-suffix: short-commit-hash | |
delete-branch: true |