Skip to content

chore(deps): Bump actions/checkout from 3 to 6 in /.github/workflows #814

chore(deps): Bump actions/checkout from 3 to 6 in /.github/workflows

chore(deps): Bump actions/checkout from 3 to 6 in /.github/workflows #814

Workflow file for this run

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)