Bumps the github-actions group with 1 update: [actions/checkout](https://github.com/actions/checkout). Updates `actions/checkout` from 5 to 6 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v5...v6) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions ... Signed-off-by: dependabot[bot] <support@github.com>
21 lines
642 B
YAML
21 lines
642 B
YAML
name: update-rust-toolchain
|
|
on:
|
|
workflow_dispatch: # allows manual triggering
|
|
schedule:
|
|
- cron: '0 9 * * wed' # runs at 9 am on every wednesday
|
|
|
|
jobs:
|
|
update-rust-toolchain:
|
|
name: "Update Rust Toolchain (rust-toolchain.toml)"
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout repository
|
|
uses: actions/checkout@v6
|
|
- name: update rust toolchain
|
|
uses: a-kenji/update-rust-toolchain@v1.1
|
|
with:
|
|
token: ${{ secrets.GH_TOKEN_FOR_UPDATES }}
|
|
toolchain-path: ./rust-toolchain.toml
|
|
commit-msg: 'chore(toolchain): update'
|
|
pr-title: 'chore(toolchain): update'
|