From 0fecb30a4323d4dda9ef98574de16fcd6a2101ec Mon Sep 17 00:00:00 2001 From: JM Faircloth Date: Mon, 12 Jun 2023 13:42:28 -0500 Subject: [PATCH] remove skip_outputs --- .github/workflows/build.yml | 5 ++++- action.yml | 4 ---- 2 files changed, 4 insertions(+), 5 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 50b68b9..565bcd6 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -101,6 +101,9 @@ jobs: e2e: runs-on: ubuntu-latest + outputs: + otherSecret: ${{ steps.kv-secrets.outputs.otherSecret }} + otherSecretTLS: ${{ steps.kv-secrets-tls.outputs.otherSecretTLS }} steps: - uses: actions/checkout@8e5e7e5ab8b370d6c329ec480221332ada57f0ab # v3.5.2 @@ -256,4 +259,4 @@ jobs: - name: Verify Vault Action Outputs run: npm run test:integration:e2e-tls env: - OTHER_SECRET_OUTPUT: ${{ steps.kv-secrets-tls.outputs.otherSecret }} + OTHER_SECRET_OUTPUT: ${{ steps.kv-secrets-tls.outputs.otherSecretTLS }} diff --git a/action.yml b/action.yml index 6549991..6f1d26e 100644 --- a/action.yml +++ b/action.yml @@ -91,7 +91,3 @@ 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