ci: bump mozilla-actions/sccache-action from 0.0.10 to 0.0.11 in the actions-minor-patch group #173
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
| # Phase 30 — REUSE / SPDX compliance gate. | |
| # | |
| # Verifies that every file in the repository has determinable copyright and | |
| # license information (declared in bulk via REUSE.toml) and that every license | |
| # in use has a text under LICENSES/. See https://reuse.software/. | |
| name: reuse-lint | |
| on: | |
| push: | |
| branches: [master] | |
| pull_request: | |
| workflow_dispatch: | |
| permissions: | |
| contents: read | |
| jobs: | |
| reuse: | |
| name: REUSE compliance | |
| runs-on: ubuntu-24.04 | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v7 | |
| - name: REUSE lint | |
| uses: fsfe/reuse-action@v6 |