Skip to content
Merged
Show file tree
Hide file tree
Changes from 44 commits
Commits
Show all changes
47 commits
Select commit Hold shift + click to select a range
109ed1f
create trviy config
DanielOber Jun 4, 2025
96e67cb
Rename trivy to trivy.yml
DanielOber Jun 4, 2025
ad14414
Update trivy.yml
DanielOber Jun 4, 2025
57705c7
trying image scanning
DanielOber Jun 26, 2025
b33ef1a
changed names
DanielOber Jun 26, 2025
76215e6
use old image as test
DanielOber Jun 26, 2025
f593c8f
all severties
DanielOber Jun 26, 2025
cfa03de
changed scan type to fs
DanielOber Jun 26, 2025
9d77236
output changed to file
DanielOber Jun 26, 2025
4dfc2a5
upload artifact
DanielOber Jun 26, 2025
d9eec82
changed exit code
DanielOber Jun 26, 2025
9804c3e
changed from json to table
DanielOber Jun 26, 2025
aa230d6
Update trivy.yml
DanielOber Jun 26, 2025
66dd71a
pipline shoudl fail
DanielOber Sep 3, 2025
eaa365d
trivyignore hinzugefügt
DanielOber Sep 3, 2025
518d259
moved ignore file
DanielOber Sep 4, 2025
46bcb0a
moved ignore file
DanielOber Sep 4, 2025
7483536
moved trivyignore
DanielOber Sep 16, 2025
80994da
moved trivyignore
DanielOber Sep 16, 2025
f31e56b
moved trivyignore
DanielOber Sep 16, 2025
92fb5ae
changed format to json
DanielOber Sep 18, 2025
fc574e1
Merge remote-tracking branch 'refs/remotes/origin/main' into feat/105…
DanielOber Jan 15, 2026
14ae4b8
added file output
DanielOber Jan 15, 2026
e47c2ee
changed file format to txt
DanielOber Jan 15, 2026
a676373
added trivyignore
DanielOber Jan 15, 2026
59a8cf3
changed exit code
DanielOber Jan 15, 2026
e048eb3
changed exit code
DanielOber Jan 15, 2026
a000792
changed exit code
DanielOber Jan 15, 2026
60b0d45
always upload artifact
DanielOber Jan 15, 2026
f748860
removed entry
DanielOber Jan 15, 2026
e9eb7ad
added lhm action
DanielOber Feb 19, 2026
da9379e
Merge remote-tracking branch 'origin/main' into feat/1054-feature-tes…
DanielOber Feb 19, 2026
a924429
changed naming
DanielOber Feb 19, 2026
4fe1647
updated spring and camel
DanielOber Feb 19, 2026
47177ad
added dep for cve fix
DanielOber Feb 20, 2026
b1c9149
test trivy
hupling Mar 10, 2026
e8994ca
Merge branch 'main' into feat/1054-feature-testing-trivy
hupling Mar 10, 2026
6aefd68
review eingearbeitet
DanielOber Mar 12, 2026
89934ef
added automatic run of pipelines
DanielOber Mar 12, 2026
cd700d8
added dependencie for cve fix
DanielOber Mar 12, 2026
48268b3
added dependencie for cve fix
DanielOber Mar 12, 2026
c191c0a
added dependencie for cve fix
DanielOber Mar 12, 2026
b24eddb
added sha fo trivy action
DanielOber Mar 12, 2026
3b22115
Merge branch 'main' into feat/1054-feature-testing-trivy
hupling Mar 12, 2026
7b3838d
Update .github/workflows/trivy.yml
DanielOber Mar 12, 2026
0aa3706
Apply suggestions from code review
DanielOber Mar 12, 2026
d91d652
Merge branch 'main' into feat/1054-feature-testing-trivy
DanielOber Mar 12, 2026
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
13 changes: 13 additions & 0 deletions .github/workflows/trivy.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
name: Trivy security scan
on:
pull_request:
schedule:
- cron: '0 3 * * *' # läuft täglich um 03:00 UTC
jobs:
scan:
name: Security Check
runs-on: ubuntu-latest
if: github.event_name != 'schedule' || github.ref == 'refs/heads/main'
steps:
- name: Run Trivy Security check on Repository
uses: it-at-m/lhm_actions/action-templates/actions/action-trivy@93bc0588b20f51660a827470790f6e52b7e300e6
Empty file added .trivyignore
Empty file.
12 changes: 12 additions & 0 deletions refarch-backend/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -253,6 +253,18 @@
<version>${commons-io.version}</version>
</dependency>

<!-- Dependencies for CVE fixes -->
<dependency> <!-- Added to fix CVE-2025-48924-->
<groupId>org.apache.commons</groupId>
<artifactId>commons-lang3</artifactId>
<version>3.18.0</version>
</dependency>
<dependency> <!-- Added to fix CVE-2026-29062-->
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-core</artifactId>
<version>2.21.1</version>
</dependency>

<!-- Configuration Processor -->
<dependency>
<groupId>org.springframework.boot</groupId>
Expand Down
7 changes: 7 additions & 0 deletions refarch-eai/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -150,6 +150,13 @@
<version>${spotbugs-annotations.version}</version>
</dependency>

<!-- Dependencies for CVE fixes -->
<dependency> <!-- Added to fix CVE-2026-29062-->
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-core</artifactId>
<version>2.21.1</version>
</dependency>

<!-- Configuration Processor -->
<dependency>
<groupId>org.springframework.boot</groupId>
Expand Down
Loading