We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 86bbc05 commit 394eca2Copy full SHA for 394eca2
1 file changed
.github/workflows/oss-index-audit-daily.yml
@@ -24,8 +24,9 @@ jobs:
24
25
- uses: gradle/actions/setup-gradle@0723195856401067f7a2779048b490ace7a47d7c # v5.0.2
26
27
- - run: ./gradlew ossIndexAudit --no-configuration-cache
28
- id: audit
+ - id: audit
+ # --no-parallel is needed to avoid OverlappingFileLockException on the shared OSS Index cache
29
+ run: ./gradlew ossIndexAudit --no-configuration-cache --no-parallel
30
continue-on-error: true
31
env:
32
SONATYPE_OSS_INDEX_USER: ${{ secrets.SONATYPE_OSS_INDEX_USER }}
0 commit comments