You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We are using FOSSA in our GH pipelines. This is our YAML file:
jobs:
fossa-scan:
runs-on: ubuntu-latestenv:
FOSSA_API_KEY: token # This is a push-only token that is safe to be exposed.steps:
- name: "Checkout code"uses: actions/checkout@v2
- name: "Run FOSSA Scan"uses: fossas/fossa-action@v1.1.0 # Use a specific version if locking is preferredwith:
api-key: ${{ env.FOSSA_API_KEY }}
- name: "Run FOSSA Test"uses: fossas/fossa-action@v1.1.0 # Use a specific version if locking is preferredwith:
api-key: ${{ env.FOSSA_API_KEY }}run-tests: true
The FOSSA test step has been failing with the message:
/opt/hostedtoolcache/fossa/3.3.0/linux_amd64/fossa test
[ INFO]
[ INFO] Using project name: `[https://github.com/dapr/components-contrib`](https://github.com/dapr/components-contrib%60)[ INFO] Using revision: `be29250c0302f1cd2a67c848050a5fc02111d805`[ INFO] [ Waiting for build completion... ][ INFO] [ Waiting for build completion... last status: StatusCreated ][ INFO] [ Waiting for build completion... last status: StatusCreated ][ INFO] [ Waiting for build completion... last status: StatusRunning ][ INFO] [ Waiting for build completion... last status: StatusRunning ][ INFO] [ Waiting for build completion... last status: StatusRunning ][ INFO] [ Waiting for build completion... last status: StatusRunning ][ INFO] [ Waiting for build completion... last status: StatusRunning ][ INFO] [ Waiting for build completion... last status: StatusRunning ][ INFO] [ Waiting for build completion... last status: StatusRunning ][ INFO] [ Waiting for build completion... last status: StatusRunning ]Error: ---------- An issue occurred >>> Relevant errors Error The build failed. Check the FOSSA webapp for more details. Traceback: (none)Error: Error: The process '/opt/hostedtoolcache/fossa/3.3.0/linux_amd64/fossa' failed with exit code 1
The scan step had passed, but test is failing. On visiting the FOSSA application too I don't see any failed builds. How can I get more information on what went wrong?
The text was updated successfully, but these errors were encountered:
We are using FOSSA in our GH pipelines. This is our YAML file:
The FOSSA test step has been failing with the message:
The scan step had passed, but test is failing. On visiting the FOSSA application too I don't see any failed builds. How can I get more information on what went wrong?
The text was updated successfully, but these errors were encountered: