From 235fd381ff9072b0d17516a7210ed4702b2d2c55 Mon Sep 17 00:00:00 2001 From: Herve Nicol <12008875+hervenicol@users.noreply.github.com> Date: Fri, 16 Jan 2026 13:52:01 +0100 Subject: [PATCH] fix-vulnerabilities GH action supports log_level variable --- CHANGELOG.md | 4 ++++ .../internal/file/fix_vulnerabilities.yaml.template | 5 +++++ 2 files changed, 9 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 401f82464..5936d0454 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.27.0] - 2026-01-16 ### 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 }}