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 689c049 commit 5773e7cCopy full SHA for 5773e7c
.github/workflows/ci.yml
@@ -48,4 +48,4 @@ jobs:
48
- name: run action
49
uses: ./
50
with:
51
- environment-paths: "${{ toJson(matrix.env-paths) }}"
+ environment-paths: "${{ toJSON(matrix.env-paths) }}"
action.yaml
@@ -20,8 +20,8 @@ runs:
20
shell: bash -l {0}
21
run: |
22
echo "${{ inputs.environment-paths }}"
23
- echo "${{ fromJson(inputs.environment-paths) }}"
+ echo "${{ fromJSON(inputs.environment-paths) }}"
24
- name: analyze environments
25
26
27
- python minimum_versions.py "${{ fromJson(inputs.environment-paths) }}"
+ python minimum_versions.py "${{ fromJSON(inputs.environment-paths) }}"
0 commit comments