-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* update dependencies including raise SpringBoot 3 * change openapi dependency * update version * Update Jackson Dependencies * Update org.json.json lib Add CVE-2023-35116 to Exclusion * Update org.json.json lib Add CVE-2023-35116 to Exclusion * Update Guava * update ci to java 17 * Update src/test/java/eu/europa/ec/dgc/verifier/restapi/controller/TrustedIssuerIntegrationTest.java --------- Co-authored-by: Felix Dittrich <[email protected]> Co-authored-by: Felix Dittrich <[email protected]>
- Loading branch information
1 parent
6cb207b
commit b0b1e1c
Showing
23 changed files
with
421 additions
and
388 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,42 +1,42 @@ | ||
name: ci-dependency-check | ||
on: | ||
schedule: | ||
- cron: '0 1 * * 0' # Each Sunday at 01:00 UTC | ||
- cron: "0 1 * * 0" # Each Sunday at 01:00 UTC | ||
pull_request: | ||
types: | ||
- opened | ||
- synchronize | ||
- reopened | ||
- opened | ||
- synchronize | ||
- reopened | ||
jobs: | ||
build: | ||
runs-on: ubuntu-20.04 | ||
runs-on: ubuntu-22.04 | ||
steps: | ||
- uses: actions/setup-java@v2 | ||
with: | ||
java-version: 11 | ||
distribution: adopt | ||
- uses: actions/checkout@v2 | ||
with: | ||
fetch-depth: 0 | ||
- uses: actions/cache@v2 | ||
with: | ||
path: | | ||
~/.m2/repository | ||
key: ${{ runner.os }}-${{ hashFiles('**/pom.xml') }} | ||
- name: version | ||
run: |- | ||
APP_SHA=$(git rev-parse --short ${GITHUB_SHA}) | ||
APP_LATEST_REV=$(git rev-list --tags --max-count=1) | ||
APP_LATEST_TAG=$(git describe --tags ${APP_LATEST_REV} 2> /dev/null || echo 0.0.0) | ||
echo "APP_VERSION=${APP_LATEST_TAG}-${APP_SHA}" >> ${GITHUB_ENV} | ||
- name: mvn | ||
run: |- | ||
mvn dependency-check:check \ | ||
--batch-mode \ | ||
--file ./pom.xml \ | ||
--settings ./settings.xml \ | ||
--define app.packages.username="${APP_PACKAGES_USERNAME}" \ | ||
--define app.packages.password="${APP_PACKAGES_PASSWORD}" \ | ||
env: | ||
APP_PACKAGES_USERNAME: ${{ github.actor }} | ||
APP_PACKAGES_PASSWORD: ${{ secrets.GITHUB_TOKEN }} | ||
- uses: actions/setup-java@v2 | ||
with: | ||
java-version: 17 | ||
distribution: adopt | ||
- uses: actions/checkout@v2 | ||
with: | ||
fetch-depth: 0 | ||
- uses: actions/cache@v2 | ||
with: | ||
path: | | ||
~/.m2/repository | ||
key: ${{ runner.os }}-${{ hashFiles('**/pom.xml') }} | ||
- name: version | ||
run: |- | ||
APP_SHA=$(git rev-parse --short ${GITHUB_SHA}) | ||
APP_LATEST_REV=$(git rev-list --tags --max-count=1) | ||
APP_LATEST_TAG=$(git describe --tags ${APP_LATEST_REV} 2> /dev/null || echo 0.0.0) | ||
echo "APP_VERSION=${APP_LATEST_TAG}-${APP_SHA}" >> ${GITHUB_ENV} | ||
- name: mvn | ||
run: |- | ||
mvn dependency-check:check \ | ||
--batch-mode \ | ||
--file ./pom.xml \ | ||
--settings ./settings.xml \ | ||
--define app.packages.username="${APP_PACKAGES_USERNAME}" \ | ||
--define app.packages.password="${APP_PACKAGES_PASSWORD}" \ | ||
env: | ||
APP_PACKAGES_USERNAME: ${{ github.actor }} | ||
APP_PACKAGES_PASSWORD: ${{ secrets.GITHUB_TOKEN }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.