Bump cpp-linter/cpp-linter-action from 91cfe27ea9f72194d7a74c64bcd71f6613446cb1 to 1a1ea41e4c75ad7d2cf857dd86843fad8754674a #347
Workflow file for this run
This file contains 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@a5ac7e51b41094c92402da3b24376905380afc29 | |
- name: License finder run | |
run: | | |
license_finder approvals add awesome_gpl_gem | |
license_finder > ./license-finder-report | |
- name: Upload artifact | |
uses: actions/upload-artifact@65462800fd760344b1a7b4382951275a0abb4808 | |
with: | |
name: scan-license-finder-report | |
path: ./license-finder-report | |
- name: Artifact download | |
uses: actions/download-artifact@65a9edc5881444af0b9093a5e628f2fe47ea3b2e | |
with: | |
name: scan-license-finder-report |