Bump actions/upload-artifact from 4.3.4 to 4.4.0 #193
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: Fossology check | |
on: [pull_request, push] | |
permissions: | |
contents: read | |
jobs: | |
check-license: | |
name: Check license, copyright, keyword | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 | |
- run: | | |
docker run --rm --name "fossologyscanner" -w "/opt/repo" -v ${PWD}:/opt/repo \ | |
-e GITHUB_TOKEN=${{ github.token }} \ | |
-e GITHUB_PULL_REQUEST=${{ github.event.number }} \ | |
-e GITHUB_REPOSITORY=${{ github.repository }} \ | |
-e GITHUB_REPO_URL=${{ github.repositoryUrl }} \ | |
-e GITHUB_REPO_OWNER=${{ github.repository_owner }} \ | |
-e GITHUB_API=${{ github.api_url }} \ | |
-e GITHUB_ACTIONS=true \ | |
fossology/fossology:scanner "/bin/fossologyscanner" --report TEXT repo nomos ojo copyright keyword | |
# Upload artifact | |
- uses: actions/upload-artifact@50769540e7f4bd5e21e526ee35c689e35e0d6874 | |
with: | |
name: scan-fossology-report | |
path: ./results | |
# Artifact download | |
- uses: actions/download-artifact@fa0a91b85d4f404e444e00e005971372dc801d16 | |
with: | |
name: scan-fossology-report |