File tree Expand file tree Collapse file tree 1 file changed +29
-0
lines changed
Expand file tree Collapse file tree 1 file changed +29
-0
lines changed Original file line number Diff line number Diff line change 1+ name : Xygeni Scan
2+ on :
3+ workflow_dispatch : # Allows manual triggering
4+ # no push triggers
5+ # no pull request triggers
6+ # no schedule triggers
7+
8+ jobs :
9+ xygeni-scan :
10+ name : Xygeni Scan
11+ runs-on : ubuntu-latest
12+ steps :
13+ - name : Set up JDK 17
14+ uses : actions/setup-java@v4
15+ with :
16+ java-version : ' 17'
17+ distribution : ' temurin'
18+
19+ - uses : actions/checkout@v3
20+ with :
21+ fetch-depth : 0 # Shallow clones should be disabled for better relevancy of analysis
22+
23+ - name : Xygeni-Scanner
24+ uses : xygeni/xygeni-action@v3.2.0
25+ id : Xygeni-Scanner
26+ with :
27+ xygeni_url : https://apidemo.xygeni.io/deps-doctor-service
28+ token : ${{ secrets.XYGENI_TOKEN }}
29+ gh_token : ${{ secrets.PAT_FOR_XYGENI_SCAN }}
You can’t perform that action at this time.
0 commit comments