We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9f59968 commit c0f3614Copy full SHA for c0f3614
.github/workflows/ci.yml
@@ -48,4 +48,4 @@ jobs:
48
- name: run action
49
uses: ./
50
with:
51
- environment-paths: "${{ matrix.env-paths }}"
+ environment-paths: "${{ toJson(matrix.env-paths) }}"
action.yaml
@@ -6,7 +6,7 @@ inputs:
6
description: >-
7
The paths to the environment files
8
required: True
9
- type: list
+ type: string
10
outputs: {}
11
12
runs:
@@ -19,4 +19,4 @@ runs:
19
- name: analyze environments
20
shell: bash -l {0}
21
run: |
22
- python minimum_versions.py ${{ inputs.env-paths }}
+ python minimum_versions.py ${{ fromJson(inputs.env-paths) }}
0 commit comments