Skip to content
Open
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
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ jobs:
platforms: linux/amd64
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
provenance: mode=max
sbom: true
provenance: ${{ github.event_name == 'push' && 'mode=max' || 'false' }}
sbom: ${{ github.event_name == 'push' }}
cache-from: type=gha
cache-to: type=gha,mode=max
39 changes: 0 additions & 39 deletions .github/workflows/security.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,42 +47,3 @@ jobs:
with:
name: dependency-licences
path: licenses.json

image:
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@11d5960a326750d5838078e36cf38b85af677262 # v4
- uses: docker/setup-buildx-action@8d2750c68a42422c14e847fe6c8ac0403b4cbd6f # v3
- uses: docker/build-push-action@10e90e3645eae34f1e60eeb005ba3a3d33f178e8 # v6
with:
context: .
load: true
pull: true
tags: muster:security
- uses: aquasecurity/trivy-action@ed142fd0673e97e23eac54620cfb913e5ce36c25 # v0.36.0
with:
image-ref: muster:security
format: sarif
output: trivy.sarif
severity: HIGH,CRITICAL
ignore-unfixed: true
exit-code: "1"
- uses: anchore/sbom-action@e22c389904149dbc22b58101806040fa8d37a610 # v0
with:
image: muster:security
format: cyclonedx-json
output-file: muster-sbom.cdx.json
upload-artifact: false
- name: Generate provenance metadata and checksums
run: |
printf '{"commit":"%s","workflow":"%s","runId":"%s","image":"muster:security"}\n' \
"$GITHUB_SHA" "$GITHUB_WORKFLOW" "$GITHUB_RUN_ID" > provenance.json
sha256sum muster-sbom.cdx.json provenance.json > SHA256SUMS
- uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4
with:
name: security-artifacts
path: |
muster-sbom.cdx.json
provenance.json
SHA256SUMS
trivy.sarif
9 changes: 9 additions & 0 deletions .gitleaks.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
title = "Muster"

[allowlist]
description = "Removed MCP test fixtures and homelab example placeholders that trip generic-api-key"
paths = [
'''packages/mcp/src/knowledge\.test\.ts''',
'''packages/mcp/src/actions\.test\.ts''',
'''deploy/docker/\.env\.homelab\.example''',
]
Empty file added apps/web/public/.gitkeep
Empty file.
Loading
Loading