Skip to content

Commit

Permalink
fix actionlint
Browse files Browse the repository at this point in the history
  • Loading branch information
fairclothjm committed Jun 17, 2023
1 parent 4b25c8e commit ff534fd
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/actionlint.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,6 @@ jobs:
# in our e2e tests.
# This error occurs because vault-action's outputs are dynamic but
# actionlint expects action.yml to define them.
args: '-ignore "property \"othersecret\" is not defined in object type"'
args: >
-ignore "property \"othersecret\" is not defined in object type"
-ignore "property \"jsonstring\" is not defined in object type"
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,7 @@ jobs:
echo "${{ steps.import-secrets.outputs.jsonString }}" > secrets.json
cat secrets.json
# we should be able to parse the output as JSON
cat secrets.json | jq -c
jq -c . < secrets.json
- name: Test Vault Action (cubbyhole)
uses: ./
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/local-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -56,4 +56,4 @@ jobs:
run: |
echo
cat secrets.json
cat secrets.json | jq -c
jq -c . < secrets.json

0 comments on commit ff534fd

Please sign in to comment.