chore(deps): update rust crate octocrab to v0.49.7 #215
Workflow file for this run
This file contains hidden or 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: CI | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| branches: [main] | |
| workflow_dispatch: | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| ci: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v6 | |
| - name: Install Rust toolchain | |
| uses: dtolnay/rust-toolchain@stable | |
| with: | |
| components: clippy, rustfmt | |
| - name: Cache mise | |
| uses: actions/cache@v5 | |
| with: | |
| path: | | |
| ~/.local/bin/mise | |
| ~/.local/share/mise | |
| key: ${{ runner.os }}-mise-${{ hashFiles('mise.toml') }} | |
| restore-keys: | | |
| ${{ runner.os }}-mise- | |
| - name: Install mise | |
| run: | | |
| if [ ! -f ~/.local/bin/mise ]; then | |
| curl https://mise.run | sh | |
| fi | |
| echo "$HOME/.local/bin" >> $GITHUB_PATH | |
| - name: Install tools | |
| run: mise install | |
| - name: Run CI checks | |
| run: mise run ci |