diff options
| author | r-hang <rhang@uber.com> | 2023-10-11 10:52:36 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-10-11 10:52:36 -0700 |
| commit | f3a3b27cdf92312dad52406c6233cccab310e110 (patch) | |
| tree | c698f2e2a1f557dfd3f00fb9744afd24890ac3ae | |
| parent | b1dc33fb6f5d3a501c6ba62f0ee2565183867f68 (diff) | |
| download | sally-f3a3b27cdf92312dad52406c6233cccab310e110.tar.gz | |
Update fossa action to v1.1.0 (#118)
The FOSSA check has been failing for a while with
fossa-actions@v1 Error: Input required and not supplied: api-key
This has caused the dependabot queue to backup, can we can't merge them
manually in sally because this check is required.
Updating the version seems to cause the check to run successfully again.
Other repositories have run into the same issue
ref: https://github.com/getsentry/self-hosted/issues/1351
Diffstat (limited to '')
| -rw-r--r-- | .github/workflows/fossa.yaml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/fossa.yaml b/.github/workflows/fossa.yaml index 611303b..4405bed 100644 --- a/.github/workflows/fossa.yaml +++ b/.github/workflows/fossa.yaml @@ -11,7 +11,7 @@ jobs: uses: actions/checkout@v3 - name: FOSSA analysis - uses: fossas/fossa-action@v1 + uses: fossas/fossa-action@v1.1.0 with: api-key: ${{ secrets.FOSSA_API_KEY }} |