Skip to content

Commit c6659c7

Browse files
authoredNov 8, 2024
Add workflow for Checkmarx One scan (#121)
* Add workflow for Checkmarx One scan * Remove jar signing As this was never used... * Use full commit hash of cxone-plusplus-github-action
1 parent 9ce9dda commit c6659c7

File tree

3 files changed

+30
-11
lines changed

3 files changed

+30
-11
lines changed
 

‎.github/workflows/checkmarx-scan.yml

+30
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
name: Checkmarx One Scan
2+
on:
3+
push:
4+
branches:
5+
- develop
6+
pull_request:
7+
branches:
8+
- develop
9+
jobs:
10+
execute-checkmarx-scan:
11+
permissions:
12+
security-events: write
13+
contents: read
14+
pull-requests: write
15+
statuses: write
16+
runs-on: ubuntu-latest
17+
steps:
18+
- name: Fetch Code
19+
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332
20+
21+
- name: Scan with CxOne++ Action
22+
id: scan
23+
uses: checkmarx-ts/cxone-plusplus-github-action@9e69646151d1564d227e7979ce9780b422bdf2f4
24+
with:
25+
cx-tenant: ${{ secrets.CXONE_TENANT }}
26+
cx-client-id: ${{ secrets.CXONE_CLIENT_ID }}
27+
cx-client-secret: ${{ secrets.CXONE_CLIENT_SECRET }}
28+
cx-cli-debug: true
29+
build-container-tag: amazoncorretto:17
30+
upload-sarif-file: false

‎build.gradle

-6
Original file line numberDiff line numberDiff line change
@@ -22,12 +22,6 @@ jar {
2222
enabled = false
2323
}
2424

25-
// Signing
26-
apply plugin: 'signing'
27-
signing {
28-
sign configurations.archives
29-
}
30-
3125
// Configure group ID, artifact ID, and version
3226
group = 'com.checkmarx-ts.util'
3327
archivesBaseName = "cx-java-util"

‎gradle.properties

-5
This file was deleted.

0 commit comments

Comments
 (0)