Skip to content

Commit c0f3614

Browse files
committed
try serializing to json
1 parent 9f59968 commit c0f3614

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,4 +48,4 @@ jobs:
4848
- name: run action
4949
uses: ./
5050
with:
51-
environment-paths: "${{ matrix.env-paths }}"
51+
environment-paths: "${{ toJson(matrix.env-paths) }}"

action.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ inputs:
66
description: >-
77
The paths to the environment files
88
required: True
9-
type: list
9+
type: string
1010
outputs: {}
1111

1212
runs:
@@ -19,4 +19,4 @@ runs:
1919
- name: analyze environments
2020
shell: bash -l {0}
2121
run: |
22-
python minimum_versions.py ${{ inputs.env-paths }}
22+
python minimum_versions.py ${{ fromJson(inputs.env-paths) }}

0 commit comments

Comments
 (0)