chore(deps): Bump softprops/action-gh-release from 2.2.2 to 2.5.0 #517
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 |