Bump cpp-linter/cpp-linter-action from 948cea872508ea44123a1e3d8638a5b828a409af to a37e579de27f4a759c4c5f18f1d43592076236c9 #382
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@692973e3d937129bcbf40652eb9f2f61becf3332 | |
- name: License finder run | |
run: | | |
license_finder approvals add awesome_gpl_gem | |
license_finder > ./license-finder-report | |
- name: Upload artifact | |
uses: actions/upload-artifact@0b2256b8c012f0828dc542b3febcab082c67f72b | |
with: | |
name: scan-license-finder-report | |
path: ./license-finder-report | |
- name: Artifact download | |
uses: actions/download-artifact@fa0a91b85d4f404e444e00e005971372dc801d16 | |
with: | |
name: scan-license-finder-report |