chore(deps): Bump cpp-linter/cpp-linter-action from cfd08bb3bd5d5611bbbf63cfbfec2643b2da9fea to b6edc0625e3941baa1797f4b4326adeab6890c97 #507
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@ea165f8d65b6e75b540449e92b4886f43607fa02 | |
| with: | |
| name: scan-license-finder-report | |
| path: ./license-finder-report | |
| - name: Artifact download | |
| uses: actions/download-artifact@d3f86a106a0bac45b974a628896c90dbdf5c8093 | |
| with: | |
| name: scan-license-finder-report |