This repository was archived by the owner on Feb 13, 2026. It is now read-only.
housekeeping: Update github.com/shurcooL/githubv4 digest to 2402fdf #2498
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
| # If the job fails, see clutch/tools/license-finder for instructions on approving a dependency. | |
| name: license_review | |
| on: | |
| pull_request: | |
| branches: | |
| - main | |
| paths: | |
| - backend/go.mod | |
| - backend/go.sum | |
| - .github/workflows/license_review.yml | |
| - tools/license-finder/config/*.yml | |
| jobs: | |
| license-check: | |
| runs-on: ubuntu-latest | |
| env: | |
| working-directory: ./tools/license-finder | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - uses: actions/setup-go@v3 | |
| id: setup-go | |
| with: | |
| go-version: 1.24.x | |
| - name: Install Ruby | |
| uses: ruby/setup-ruby@v1 | |
| with: | |
| ruby-version: 2.6 | |
| - name: Install license finder | |
| run: gem install license_finder | |
| - name: Run license finder | |
| run: license_finder | |
| working-directory: ${{env.working-directory}} |