Skip to content
Merged
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
2 changes: 1 addition & 1 deletion .github/workflows/build-docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ jobs:
cache-to: type=registry,mode=max,ref=${{ env.GHCR_REPO }}:cache-${{ matrix.tag }}-${{ env.SAFE_REF }}

- name: Scan image with Trivy
uses: aquasecurity/trivy-action@0.32.0
uses: aquasecurity/trivy-action@0.33.1
with:
image-ref: "${{ env.GHCR_REPO }}:${{ github.sha }}-${{ matrix.tag }}"
format: "table"
Expand Down
10 changes: 10 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,16 @@ jobs:
with:
submodules: recursive

- name: Scan code with Trivy
uses: aquasecurity/trivy-action@0.33.1
with:
scan-type: 'fs'
scan-ref: '.'
exit-code: "1"
ignore-unfixed: true
severity: "CRITICAL,HIGH,MEDIUM"
scanners: "vuln"

- name: Cache
uses: Swatinem/rust-cache@v2

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/sbom.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
format: 'spdx-json'
output: "defguard-${{ env.VERSION }}.sbom.json"
scan-ref: '.'
severity: "CRITICAL,HIGH,MEDIUM"
severity: "CRITICAL,HIGH,MEDIUM,LOW"
scanners: "vuln"

- name: Create docker image SBOM with Trivy
Expand All @@ -42,7 +42,7 @@ jobs:
scan-type: 'image'
format: 'spdx-json'
output: "defguard-${{ env.VERSION }}-docker.sbom.json"
severity: "CRITICAL,HIGH,MEDIUM"
severity: "CRITICAL,HIGH,MEDIUM,LOW"
scanners: "vuln"

- name: Upload SBOM
Expand Down
20 changes: 10 additions & 10 deletions e2e/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,15 +11,15 @@
"keywords": [],
"author": "",
"devDependencies": {
"@eslint/compat": "^1.3.2",
"@eslint/compat": "^1.4.0",
"@eslint/eslintrc": "^3.3.1",
"@eslint/js": "^9.34.0",
"@eslint/js": "^9.36.0",
"@prettier/plugin-oxc": "^0.0.4",
"@types/node": "^22.18.0",
"@types/node": "^22.18.6",
"@types/totp-generator": "^0.0.8",
"@typescript-eslint/eslint-plugin": "^8.41.0",
"@typescript-eslint/parser": "^8.41.0",
"eslint": "^9.34.0",
"@typescript-eslint/eslint-plugin": "^8.44.1",
"@typescript-eslint/parser": "^8.44.1",
"eslint": "^9.36.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-prettier": "^5.5.4",
Expand All @@ -28,15 +28,15 @@
},
"dependencies": {
"@faker-js/faker": "^9.9.0",
"@playwright/test": "^1.55.0",
"@playwright/test": "^1.55.1",
"@scure/base": "^1.2.6",
"@types/lodash": "^4.17.20",
"@types/pg": "^8.15.5",
"axios": "^1.11.0",
"dotenv": "^17.2.1",
"axios": "^1.12.2",
"dotenv": "^17.2.2",
"lodash": "^4.17.21",
"pg": "^8.16.3",
"playwright": "^1.55.0",
"playwright": "^1.55.1",
"totp-generator": "^1.0.0"
},
"volta": {
Expand Down
Loading