Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -97,6 +97,9 @@ jobs:
- name: Build Keycloak
uses: ./.github/actions/build-keycloak

- name: Trivy
run: ./mvnw trivy:trivy-scan

- name: Check for unstaged proto.lock files
if: github.event_name == 'pull_request' && startsWith(github.event.pull_request.base.ref, 'release/')
run: git diff --name-only --exit-code -- "**/proto.lock"
Expand Down
7 changes: 7 additions & 0 deletions .trivyignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
CVE-2015-7501
CVE-2019-17571
CVE-2022-23305
CVE-2022-23307
CVE-2022-4492
CVE-2022-45047
CVE-2024-52046
5 changes: 0 additions & 5 deletions boms/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -78,11 +78,6 @@
<nexusUrl>${jboss.repo.nexusUrl}</nexusUrl>
</configuration>
</plugin>
<plugin>
<groupId>com.diffplug.spotless</groupId>
<artifactId>spotless-maven-plugin</artifactId>
<version>${spotless-plugin.version}</version>
</plugin>
</plugins>
</pluginManagement>
</build>
Expand Down
10 changes: 10 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -1557,6 +1557,16 @@
</java>
</configuration>
</plugin>
<plugin>
<groupId>tech.orla</groupId>
<artifactId>trivy-maven-plugin</artifactId>
<version>1.0.1</version>
<configuration>
<ignoreUnfixed>true</ignoreUnfixed>
<severity>CRITICAL</severity>
<vulnType>os,library</vulnType>
</configuration>
</plugin>
</plugins>
</pluginManagement>

Expand Down
Loading