perf: Collect performance data on shared timer executor (JAVA-653) #10699
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: Enforce License Compliance | |
| on: | |
| push: | |
| branches: [master, main, release/*] | |
| pull_request: | |
| branches: [master, main] | |
| jobs: | |
| enforce-license-compliance: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Setup Gradle | |
| uses: gradle/actions/setup-gradle@3f131e8634966bd73d06cc69884922b02e6faf92 # v6.2.0 | |
| - name: Set up Java | |
| uses: actions/setup-java@03ad4de0992f5dab5e18fcb136590ce7c4a0ac95 # v5 | |
| with: | |
| distribution: 'temurin' | |
| java-version: '17' | |
| - name: Checkout | |
| uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1 | |
| # 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@48236a773346cb6552a7bda1ee370d2797365d87 # main | |
| with: | |
| skip_checkout: 'true' | |
| fossa_test_timeout_seconds: 3600 | |
| fossa_api_key: ${{ secrets.FOSSA_API_KEY }} |