diff options
| -rw-r--r-- | .gitlab-ci.yml | 24 | ||||
| -rw-r--r-- | pom.xml | 2 | ||||
| -rw-r--r-- | renovate.json | 5 | 
3 files changed, 29 insertions, 2 deletions
| diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml new file mode 100644 index 0000000..3f0dba2 --- /dev/null +++ b/.gitlab-ci.yml @@ -0,0 +1,24 @@ +stages: +  - check + +image: maven:3-openjdk-17 + +verify: +  stage: check +  script: +    - mvn verify + +sast: +  stage: check + +cache: +  key: $CI_JOB_NAME +  paths: +    - .m2/repository + +variables: +  MAVEN_OPTS: "-Dmaven.repo.local=.m2/repository" +  MAVEN_CLI_OPTS: "--batch-mode --errors" + +include: +  - template: Security/SAST.gitlab-ci.yml @@ -72,7 +72,7 @@ SPDX-License-Identifier: LGPL-3.0-or-later      <spotless-plugin.version>2.29.0</spotless-plugin.version>      <surefire-plugin.version>3.0.0-M7</surefire-plugin.version> -    <quarkus.version>2.15.1.Final</quarkus.version> +    <quarkus.version>2.15.3.Final</quarkus.version>    </properties>    <distributionManagement> diff --git a/renovate.json b/renovate.json index f59f762..c031064 100644 --- a/renovate.json +++ b/renovate.json @@ -1,3 +1,6 @@  { "$schema": "https://docs.renovatebot.com/renovate-schema.json" -, "extends": ["local>benkard/.github:renovate-config"] +, "extends": +  [ "local>mulk/renovate-config" +  , ":automergeMinor" +  ]  } | 
