From bb0a4c6d1cb0cc72b0cdbe47aa5214ae331ca35e Mon Sep 17 00:00:00 2001 From: "Brian J. Murrell" Date: Mon, 21 Oct 2024 16:12:36 -0400 Subject: [PATCH] Need to use fromJSON() for non-string Run-GHA: true Skip-PR-comments: true Test-tag: always_passes,vm Required-githooks: true Signed-off-by: Brian J. Murrell --- .github/workflows/bullseye-coverage.yml | 4 ++-- .github/workflows/rpm-build-and-test.yml | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/bullseye-coverage.yml b/.github/workflows/bullseye-coverage.yml index 380520d4d1b..4f63b285b37 100644 --- a/.github/workflows/bullseye-coverage.yml +++ b/.github/workflows/bullseye-coverage.yml @@ -92,8 +92,8 @@ jobs: EL8_BUILD_VERSION: ${{ needs.Variables.outputs.EL8_BUILD_VERSION }} EL9_BUILD_VERSION: ${{ needs.Variables.outputs.EL9_BUILD_VERSION }} LEAP15_VERSION: ${{ needs.Variables.outputs.LEAP15_VERSION }} - PACKAGING_DIR: ${{ needs.Variables.outputs.PACKAGING_DIR}} - COVFN_DISABLED: ${{ needs.Variables.outputs.COVFN_DISABLED}} + PACKAGING_DIR: ${{ needs.Variables.outputs.PACKAGING_DIR }} + COVFN_DISABLED: ${{ fromJSON(needs.Variables.outputs.COVFN_DISABLED) }} Calc-functional-matrix: name: Calculate Functional Testing Matrix diff --git a/.github/workflows/rpm-build-and-test.yml b/.github/workflows/rpm-build-and-test.yml index 1d9c28dac4a..078772c017e 100644 --- a/.github/workflows/rpm-build-and-test.yml +++ b/.github/workflows/rpm-build-and-test.yml @@ -92,8 +92,8 @@ jobs: EL8_BUILD_VERSION: ${{ needs.Variables.outputs.EL8_BUILD_VERSION }} EL9_BUILD_VERSION: ${{ needs.Variables.outputs.EL9_BUILD_VERSION }} LEAP15_VERSION: ${{ needs.Variables.outputs.LEAP15_VERSION }} - PACKAGING_DIR: ${{ needs.Variables.outputs.PACKAGING_DIR}} - COVFN_DISABLED: ${{ needs.Variables.outputs.COVFN_DISABLED}} + PACKAGING_DIR: ${{ needs.Variables.outputs.PACKAGING_DIR }} + COVFN_DISABLED: ${{ fromJSON(needs.Variables.outputs.COVFN_DISABLED) }} Calc-functional-matrix: name: Calculate Functional Testing Matrix