5
0
Fork 0
mirror of https://github.com/hashicorp/vault-action.git synced 2025-11-10 08:36:55 +00:00

move skip_outpus to action.yml

This commit is contained in:
JM Faircloth 2023-06-12 12:28:45 -05:00
parent c54fc97585
commit df60ce93d6
2 changed files with 4 additions and 6 deletions

View file

@ -134,9 +134,6 @@ jobs:
- name: Test Vault Action (default KV V2)
uses: ./
# Don't enforce strict typing for outputs (defined in this repo's
# action.yml) because vault-action's outputs are dynamic
skip_outputs: true
id: kv-secrets
with:
url: http://localhost:8200
@ -208,9 +205,6 @@ jobs:
- name: Test Vault Action (default KV V2)
uses: ./
# Don't enforce strict typing for outputs (defined in this repo's
# action.yml) because vault-action's outputs are dynamic
skip_outputs: true
id: kv-secrets-tls
with:
url: https://localhost:8200

View file

@ -91,3 +91,7 @@ runs:
branding:
icon: 'unlock'
color: 'gray-dark'
# Don't enforce strict typing for outputs (defined in this repo's action.yml)
# because vault-action's outputs are dynamic. This is useful for repo's that
# make use of https://github.com/rhysd/actionlint
skip_outputs: true