Bump version of update-rust-toolchain GitHub Action to fix bug
#33
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: Update Rust toolchain | |
| on: | |
| push: | |
| # **HACK** | |
| branches: [fix-update-toolchain-workflow] | |
| workflow_dispatch: # allows manual triggering | |
| schedule: | |
| - cron: "0 0 * * mon" | |
| jobs: | |
| update-rust-toolchain: | |
| name: "Update rust-toolchain" | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v6 | |
| with: | |
| persist-credentials: false | |
| - name: update rust toolchain | |
| uses: a-kenji/update-rust-toolchain@v1.1 | |
| with: | |
| toolchain-path: ./rust-toolchain.toml | |
| # token: ${{ secrets.GH_TOKEN_FOR_UPDATES }} |