diff --git a/CHANGELOG.md b/CHANGELOG.md index 3b6e1ddbc..ef89a8a18 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +### Changed + +- fix-vulnerabilities GH action supports log_level variable + ## [7.28.1] - 2026-01-20 ### Changed diff --git a/pkg/gen/input/workflows/internal/file/fix_vulnerabilities.yaml.template b/pkg/gen/input/workflows/internal/file/fix_vulnerabilities.yaml.template index e0a880cd8..4a544c451 100644 --- a/pkg/gen/input/workflows/internal/file/fix_vulnerabilities.yaml.template +++ b/pkg/gen/input/workflows/internal/file/fix_vulnerabilities.yaml.template @@ -11,12 +11,17 @@ on: description: Branch on which to fix vulnerabilities required: true type: string + log_level: + description: Log Level (info / error / debug) + default: "info" + type: string jobs: fix: uses: giantswarm/github-workflows/.github/workflows/fix-vulnerabilities.yaml@main with: branch: ${{ inputs.branch || github.ref }} + log_level: ${{ inputs.log_level }} secrets: HERALD_APP_ID: ${{ secrets.HERALD_APP_ID }} HERALD_APP_KEY: ${{ secrets.HERALD_APP_KEY }}