From 17b93af873fd5dfb80b5e2bfe8e0d5dd1016054a Mon Sep 17 00:00:00 2001 From: jdre Date: Tue, 25 Jun 2024 15:54:55 +0200 Subject: [PATCH] feat(ci): workflow as separate yml files debug n/a --- .github/workflows/cockpit-e2e-integration-test.yml | 2 +- .github/workflows/test-plugins-against-cockpit.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/cockpit-e2e-integration-test.yml b/.github/workflows/cockpit-e2e-integration-test.yml index 5a786ddd..72037131 100644 --- a/.github/workflows/cockpit-e2e-integration-test.yml +++ b/.github/workflows/cockpit-e2e-integration-test.yml @@ -19,7 +19,7 @@ jobs: runs-on: ubuntu-22.04 steps: - name: Print Output Debug - run: echo "non_deprecated_shell_versions=${{ fromJSON(needs.collect-shell-versions.outputs.non_deprecated_shell_versions) }}" + run: echo "non_deprecated_shell_versions=${{ needs.collect-shell-versions.outputs.non_deprecated_shell_versions }}" test-plugins-against-cockpit: # needs: [collect-shell-versions, build-plugins] diff --git a/.github/workflows/test-plugins-against-cockpit.yml b/.github/workflows/test-plugins-against-cockpit.yml index 44d91b58..57900ec4 100644 --- a/.github/workflows/test-plugins-against-cockpit.yml +++ b/.github/workflows/test-plugins-against-cockpit.yml @@ -11,7 +11,7 @@ jobs: runs-on: ubuntu-22.04 strategy: matrix: - version_data: ${{ fromJSON(inputs.non_deprecated_shell_versions) }} + version_data: ${{ inputs.non_deprecated_shell_versions }} env: JSON: ${{ toJson(matrix.version_data) }} VERSION: ${{ matrix.version_data.version }}