Skip to content

Commit d8c3cb5

Browse files
authored
Merge branch 'main' into chore/cleanup
2 parents 41707b7 + c9443a2 commit d8c3cb5

37 files changed

+663
-746
lines changed

.github/workflows/fosstars-report.yml

Lines changed: 12 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -26,12 +26,12 @@ jobs:
2626
java-version: ${{ env.JAVA_VERSION }}
2727
cache: 'maven'
2828

29-
- name: Restore CVE Database
29+
- name: "Restore CVE Database"
3030
uses: actions/cache/restore@v4
3131
with:
3232
path: ${{ env.CVE_CACHE_DIR }}
3333
key: ${{ env.CVE_CACHE_KEY }}
34-
# fail-on-cache-miss: true
34+
fail-on-cache-miss: true
3535

3636
- name: "Build SDK"
3737
run: |
@@ -48,9 +48,16 @@ jobs:
4848
env:
4949
NVD_API_KEY: ${{ secrets.NVD_API_KEY }}
5050
run: |
51-
mvn -T1 --no-transfer-progress dependency-check:check
51+
mvn -T1 --no-transfer-progress --batch-mode org.owasp:dependency-check-maven:check org.owasp:dependency-check-maven:aggregate
5252
53-
- name: Delete Old CVE Cache
53+
- name: "Archive CVE Report"
54+
uses: actions/upload-artifact@v4
55+
with:
56+
name: cve-report
57+
path: target/dependency-check-report.html
58+
retention-days: 7
59+
60+
- name: "Delete Old CVE Cache"
5461
run: |
5562
CACHE_IDS=$(gh cache list --key "${{ env.CVE_CACHE_KEY }}" --ref "${{ env.CVE_CACHE_REF }}" --json id | jq -r '.[] | .id')
5663
for CACHE_ID in $CACHE_IDS; do
@@ -60,7 +67,7 @@ jobs:
6067
env:
6168
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
6269

63-
- name: Create Updated CVE Cache
70+
- name: "Create Updated CVE Cache"
6471
uses: actions/cache/save@v4
6572
with:
6673
path: ${{ env.CVE_CACHE_DIR }}

core/src/main/java/com/sap/ai/sdk/core/AiCoreDeployment.java

Lines changed: 0 additions & 45 deletions
This file was deleted.

core/src/main/java/com/sap/ai/sdk/core/AiCoreDestination.java

Lines changed: 0 additions & 29 deletions
This file was deleted.

0 commit comments

Comments
 (0)