chore(deps): Bump github.com/gruntwork-io/terragrunt #28
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: License Check | |
| on: | |
| push: | |
| jobs: | |
| license-check: | |
| name: License Check | |
| runs-on: ubuntu-latest | |
| env: | |
| MISE_PROFILE: cicd | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v4 | |
| - name: Set up mise | |
| uses: jdx/mise-action@v2 | |
| with: | |
| version: 2025.6.8 | |
| experimental: true | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| - name: Cache licensei | |
| uses: actions/cache@v4 | |
| with: | |
| path: .licensei.cache | |
| key: ${{ runner.os }}-licensei-${{ hashFiles('**/go.sum', '.licensei.toml') }} | |
| restore-keys: | | |
| ${{ runner.os }}-licensei- | |
| - name: Run License Check | |
| id: run-license-check | |
| run: | | |
| set -o pipefail | |
| { | |
| go mod vendor | |
| licensei cache --debug | |
| licensei check --debug | |
| licensei header --debug | |
| } | tee license-check.log | |
| shell: bash | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| - name: Upload License Check Report | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: license-check-report-ubuntu | |
| path: license-check.log |