chore(deps): Bump cpp-linter/cpp-linter-action from 0b93f5833680005fbb233652d0e3d8835b3cc2f3 to 06e25f1ffabd1ff9429b75163afe4f183ee6a64e #569
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@3d3c42e5aac5ba805825da76410c181273ba90b1 | |
| - name: License finder run | |
| run: | | |
| license_finder approvals add awesome_gpl_gem | |
| license_finder > ./license-finder-report | |
| - name: Upload artifact | |
| uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a | |
| with: | |
| name: scan-license-finder-report | |
| path: ./license-finder-report | |
| - name: Artifact download | |
| uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c | |
| with: | |
| name: scan-license-finder-report |