Skip to content

Commit 5773e7c

Browse files
committed
use the right function names
1 parent 689c049 commit 5773e7c

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: "${{ toJson(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
@@ -20,8 +20,8 @@ runs:
2020
shell: bash -l {0}
2121
run: |
2222
echo "${{ inputs.environment-paths }}"
23-
echo "${{ fromJson(inputs.environment-paths) }}"
23+
echo "${{ fromJSON(inputs.environment-paths) }}"
2424
- name: analyze environments
2525
shell: bash -l {0}
2626
run: |
27-
python minimum_versions.py "${{ fromJson(inputs.environment-paths) }}"
27+
python minimum_versions.py "${{ fromJSON(inputs.environment-paths) }}"

0 commit comments

Comments
 (0)