From 5f5dcbced7c33adad9e1a034f16cb68dc6f18162 Mon Sep 17 00:00:00 2001 From: Paul Campbell Date: Wed, 5 Oct 2022 22:10:17 +0100 Subject: [PATCH] Run dependency-check daily commit-id:9684bd9e --- .github/workflows/dependency-check.yml | 10 ++++++++++ pom.xml | 21 ++++++++++++++++++++- 2 files changed, 30 insertions(+), 1 deletion(-) create mode 100644 .github/workflows/dependency-check.yml diff --git a/.github/workflows/dependency-check.yml b/.github/workflows/dependency-check.yml new file mode 100644 index 0000000..7095550 --- /dev/null +++ b/.github/workflows/dependency-check.yml @@ -0,0 +1,10 @@ +on: + schedule: + - cron: '30 5 * * *' + +jobs: + test_dependencies: + runs-on: ubuntu-latest + steps: + - name: check dependencies + run: mvn dependency-check:check diff --git a/pom.xml b/pom.xml index ba817a1..baa36b9 100644 --- a/pom.xml +++ b/pom.xml @@ -12,12 +12,13 @@ kemitix-trello - 2.0.2 + 2.0.3 2.18 2.10.0 + 7.2.1 0.14 2.14.0-rc1 4.5.13 @@ -103,6 +104,24 @@ + + org.owasp + dependency-check-maven + ${dependency-check-maven.version} + + true + true + true + 7 + + + + + check + + + +