File tree Expand file tree Collapse file tree 2 files changed +34
-4
lines changed
Expand file tree Collapse file tree 2 files changed +34
-4
lines changed Original file line number Diff line number Diff line change 1212 blackduck-scan :
1313 runs-on : [ ubuntu-latest ]
1414 steps :
15- - name : Checkout Source
16- uses : actions/checkout@v3
15+ - uses : actions/checkout@v3
16+ - uses : actions/setup-java@v3
17+ with :
18+ distribution : temurin
19+ java-version : 11
20+
21+ - name : Setup Gradle
22+ uses : gradle/gradle-build-action@v2
1723
24+ - name : Make gradlew executable
25+ run : chmod +x ./gradlew
26+
27+ - name : Execute Gradle build
28+ run : ./gradlew check
29+ env :
30+ UNIT_API_URL : ${{ secrets.UNIT_API_URL }}
31+ UNIT_TOKEN : ${{ secrets.UNIT_TOKEN }}
32+ access_token : ${{ secrets.UNIT_TOKEN }}
1833
1934 - name : Black Duck Full Scan
2035 uses :
synopsys-sig/[email protected]
Original file line number Diff line number Diff line change 1515 blackduck-scan :
1616 runs-on : [ ubuntu-latest ]
1717 steps :
18- - name : Checkout Source
19- uses : actions/checkout@v3
18+ - uses : actions/checkout@v3
19+ - uses : actions/setup-java@v3
20+ with :
21+ distribution : temurin
22+ java-version : 11
23+
24+ - name : Setup Gradle
25+ uses : gradle/gradle-build-action@v2
2026
27+ - name : Make gradlew executable
28+ run : chmod +x ./gradlew
29+
30+ - name : Execute Gradle build
31+ run : ./gradlew check
32+ env :
33+ UNIT_API_URL : ${{ secrets.UNIT_API_URL }}
34+ UNIT_TOKEN : ${{ secrets.UNIT_TOKEN }}
35+ access_token : ${{ secrets.UNIT_TOKEN }}
2136
2237 - name : Black Duck Full Scan
2338 uses :
synopsys-sig/[email protected]
You can’t perform that action at this time.
0 commit comments