Skip to content

Commit 394eca2

Browse files
authored
Fix vulnerability scan job (#2705)
1 parent 86bbc05 commit 394eca2

1 file changed

Lines changed: 3 additions & 2 deletions

File tree

.github/workflows/oss-index-audit-daily.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,9 @@ jobs:
2424

2525
- uses: gradle/actions/setup-gradle@0723195856401067f7a2779048b490ace7a47d7c # v5.0.2
2626

27-
- run: ./gradlew ossIndexAudit --no-configuration-cache
28-
id: audit
27+
- id: audit
28+
# --no-parallel is needed to avoid OverlappingFileLockException on the shared OSS Index cache
29+
run: ./gradlew ossIndexAudit --no-configuration-cache --no-parallel
2930
continue-on-error: true
3031
env:
3132
SONATYPE_OSS_INDEX_USER: ${{ secrets.SONATYPE_OSS_INDEX_USER }}

0 commit comments

Comments
 (0)