chore(deps): Bump cpp-linter/cpp-linter-action from 1f17beec5b849076a66af41aca1a44a041625541 to cfd08bb3bd5d5611bbbf63cfbfec2643b2da9fea #480
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 Finder | |
| on: [push, pull_request] | |
| permissions: | |
| contents: read | |
| jobs: | |
| license_finder: | |
| runs-on: ubuntu-latest | |
| container: | |
| image: gianlucadb0/license_finder | |
| steps: | |
| - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 | |
| - name: License finder run | |
| run: | | |
| license_finder approvals add awesome_gpl_gem | |
| license_finder > ./license-finder-report | |
| - name: Upload artifact | |
| uses: actions/upload-artifact@4cec3d8aa04e39d1a68397de0c4cd6fb9dce8ec1 | |
| with: | |
| name: scan-license-finder-report | |
| path: ./license-finder-report | |
| - name: Artifact download | |
| uses: actions/download-artifact@cc203385981b70ca67e1cc392babf9cc229d5806 | |
| with: | |
| name: scan-license-finder-report |