diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 2191896..50b68b9 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -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 diff --git a/action.yml b/action.yml index 6f1d26e..6549991 100644 --- a/action.yml +++ b/action.yml @@ -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