Skip to content
Open
Show file tree
Hide file tree
Changes from 17 commits
Commits
Show all changes
35 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
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
1 change: 1 addition & 0 deletions .github/.trivyignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
CVE-2025-48924
18 changes: 18 additions & 0 deletions .github/workflows/trivy.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: build
on:
pull_request:
jobs:
build:
name: Trivy Check
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4

- name: Run Trivy vulnerability scanner in Image mode
uses: aquasecurity/trivy-action@0.28.0
with:
scan-type: 'fs'
format: 'table'
exit-code: '1'
trivyignores: '.github/.trivyignore'
Loading