Enable trivy and dependabot on 1.0 branch (#3046)

Signed-off-by: strailov <Stanislav.Trailov@bosch.io>
This commit is contained in:
Stanislav Trailov
2026-05-07 09:59:37 +03:00
committed by GitHub
parent 111658a548
commit 976106c75f
3 changed files with 25 additions and 4 deletions

View File

@@ -15,10 +15,14 @@ jobs:
trivy-scan:
# only on original eclipse-hawkbit/hawkbit repo or when manually triggered
if: github.repository == 'eclipse-hawkbit/hawkbit' || github.event_name == 'workflow_dispatch'
strategy:
matrix:
branch: [master, "1.0"]
uses: ./.github/workflows/reusable_workflow_trivy-scan.yaml
permissions:
contents: read
security-events: write
# Enable Upload for both branches
with:
ref: ${{ github.ref }}
upload: ${{ github.ref == 'refs/heads/master' }}
ref: ${{ matrix.branch }}
upload: true