Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions .fossa.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
version: 3
targets:
exclude:
- type: setuptools
9 changes: 9 additions & 0 deletions .github/workflows/enforce-license-compliance.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,16 @@ jobs:
distribution: 'temurin'
java-version: '17'

- name: Checkout
uses: actions/checkout@v4

# TODO: remove this when upstream is fixed
- name: Disable Gradle configuration cache (see https://github.com/fossas/fossa-cli/issues/872)
run: sed -i 's/^org.gradle.configuration-cache=.*/org.gradle.configuration-cache=false/' gradle.properties

- name: 'Enforce License Compliance'
uses: getsentry/action-enforce-license-compliance@main
with:
skip_checkout: 'true'
fossa_test_timeout_seconds: 3600
fossa_api_key: ${{ secrets.FOSSA_API_KEY }}
Loading