mirror of
https://github.com/hashicorp/vault-action.git
synced 2025-11-09 16:16:55 +00:00
fix actionlint
This commit is contained in:
parent
00e0fcabda
commit
10ed4392a6
3 changed files with 5 additions and 3 deletions
4
.github/workflows/actionlint.yaml
vendored
4
.github/workflows/actionlint.yaml
vendored
|
|
@ -16,4 +16,6 @@ jobs:
|
||||||
# in our e2e tests.
|
# in our e2e tests.
|
||||||
# This error occurs because vault-action's outputs are dynamic but
|
# This error occurs because vault-action's outputs are dynamic but
|
||||||
# actionlint expects action.yml to define them.
|
# 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
.github/workflows/build.yml
vendored
2
.github/workflows/build.yml
vendored
|
|
@ -168,7 +168,7 @@ jobs:
|
||||||
echo "${{ steps.import-secrets.outputs.jsonString }}" > secrets.json
|
echo "${{ steps.import-secrets.outputs.jsonString }}" > secrets.json
|
||||||
cat secrets.json
|
cat secrets.json
|
||||||
# we should be able to parse the output as 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)
|
- name: Test Vault Action (cubbyhole)
|
||||||
uses: ./
|
uses: ./
|
||||||
|
|
|
||||||
2
.github/workflows/local-test.yaml
vendored
2
.github/workflows/local-test.yaml
vendored
|
|
@ -56,4 +56,4 @@ jobs:
|
||||||
run: |
|
run: |
|
||||||
echo
|
echo
|
||||||
cat secrets.json
|
cat secrets.json
|
||||||
cat secrets.json | jq -c
|
jq -c . < secrets.json
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue