fix(deps): update arborium crates to 2.10.0 #2
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: Sync arborium languages | |
| on: | |
| push: | |
| branches: | |
| - 'renovate/arborium-crates' | |
| permissions: | |
| contents: write | |
| jobs: | |
| sync: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6 | |
| - name: Sync language features | |
| run: python3 scripts/sync-langs.py --ci | |
| - name: Commit if changed | |
| run: | | |
| git diff --quiet crates/*/Cargo.toml && exit 0 | |
| git config user.name github-actions[bot] | |
| git config user.email github-actions[bot]@users.noreply.github.com | |
| git add crates/*/Cargo.toml | |
| git commit -m "chore: Sync arborium language features" | |
| git push |