chore(cargo): Bump serde_json from 1.0.138 to 1.0.139 #202
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: workflow | |
on: | |
schedule: | |
- cron: '0 0 * * *' | |
push: | |
branches: [ main ] | |
pull_request: | |
paths: | |
- '.github/*' | |
- '.github/workflows/*' | |
branches: [ main ] | |
permissions: {} | |
jobs: | |
zizmor: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
persist-credentials: false | |
- name: Install the Rust toolchain | |
uses: dtolnay/rust-toolchain@stable | |
- name: Rust Cache Action | |
uses: Swatinem/rust-cache@v2 | |
- name: Install zizmor | |
run: cargo install zizmor | |
- name: check workflows | |
run: zizmor .github/workflows | |
env: | |
GH_TOKEN: "${{ secrets.GITHUB_TOKEN }}" |