mirror of
https://github.com/hashicorp/vault-action.git
synced 2025-11-07 23:26:55 +00:00
try actionlint's skip_outputs setting
This commit is contained in:
parent
9f484782ca
commit
9742b3319a
2 changed files with 4 additions and 4 deletions
3
.github/workflows/actionlint.yaml
vendored
3
.github/workflows/actionlint.yaml
vendored
|
|
@ -5,5 +5,8 @@ on:
|
||||||
- '.github/workflows/**'
|
- '.github/workflows/**'
|
||||||
jobs:
|
jobs:
|
||||||
actionlint:
|
actionlint:
|
||||||
|
# don't enforce strict typing for outputs (defined in this repo's
|
||||||
|
# action.yml) because vault-action's outputs are dynamic
|
||||||
|
skip_outputs: true
|
||||||
# using `main` as the ref will keep your workflow up-to-date
|
# using `main` as the ref will keep your workflow up-to-date
|
||||||
uses: hashicorp/vault-workflows-common/.github/workflows/actionlint.yaml@main
|
uses: hashicorp/vault-workflows-common/.github/workflows/actionlint.yaml@main
|
||||||
|
|
|
||||||
5
.github/workflows/build.yml
vendored
5
.github/workflows/build.yml
vendored
|
|
@ -101,9 +101,6 @@ jobs:
|
||||||
|
|
||||||
e2e:
|
e2e:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
outputs:
|
|
||||||
otherSecret: ${{ steps.kv-secrets.outputs.otherSecret }}
|
|
||||||
otherSecretTLS: ${{ steps.kv-secrets-tls.outputs.otherSecretTLS }}
|
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@8e5e7e5ab8b370d6c329ec480221332ada57f0ab # v3.5.2
|
- uses: actions/checkout@8e5e7e5ab8b370d6c329ec480221332ada57f0ab # v3.5.2
|
||||||
|
|
@ -259,4 +256,4 @@ jobs:
|
||||||
- name: Verify Vault Action Outputs
|
- name: Verify Vault Action Outputs
|
||||||
run: npm run test:integration:e2e-tls
|
run: npm run test:integration:e2e-tls
|
||||||
env:
|
env:
|
||||||
OTHER_SECRET_OUTPUT: ${{ steps.kv-secrets-tls.outputs.otherSecretTLS }}
|
OTHER_SECRET_OUTPUT: ${{ steps.kv-secrets-tls.outputs.otherSecret }}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue