Bump diff-so-fancy from bb015e0 to b633fd8
#22
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: Trunk Code Quality | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| branches: [main] | |
| concurrency: | |
| group: ${{ github.head_ref || github.run_id }} | |
| cancel-in-progress: true | |
| permissions: read-all | |
| jobs: | |
| trunk-check: | |
| name: Trunk Code Quality Runner | |
| runs-on: ubuntu-latest | |
| # Provide minimal permissions instead of write-all | |
| permissions: | |
| pull-requests: write | |
| checks: write | |
| steps: | |
| - uses: actions/checkout@v6 | |
| # Optional caching for trunk to speed up subsequent runs | |
| - name: Cache trunk | |
| uses: actions/cache@v5 | |
| with: | |
| path: | | |
| ~/.cache/trunk | |
| key: ${{ runner.os }}-trunk-${{ hashFiles('.trunk/trunk.yaml') }} | |
| - name: Trunk Code Quality | |
| uses: trunk-io/trunk-action@v1 |