chore(deps): Bump actions/checkout from 3 to 6 in /.github/workflows #814
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 freshness | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| branches: | |
| - main | |
| jobs: | |
| ci-freshness: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Install Rust | |
| uses: actions-rust-lang/[email protected] | |
| - name: Generate docs.yml | |
| run: | | |
| cd .github/ci_generator | |
| cargo run > docs.yml | |
| mv docs.yml ../workflows | |
| - name: Fail if anything changed | |
| run: | | |
| git add . | |
| git diff --exit-code --cached || (echo "Please regenerate the docs.yml CI script" && exit 1) |