From df60ce93d62288b2e32f82202d8a10d5cb4ae781 Mon Sep 17 00:00:00 2001 From: JM Faircloth Date: Mon, 12 Jun 2023 12:28:45 -0500 Subject: [PATCH] move skip_outpus to action.yml --- .github/workflows/build.yml | 6 ------ action.yml | 4 ++++ 2 files changed, 4 insertions(+), 6 deletions(-) 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