mirror of
https://github.com/hashicorp/vault-action.git
synced 2025-11-10 16:46:56 +00:00
move skip_outputs to action definition in tests
This commit is contained in:
parent
9742b3319a
commit
c54fc97585
2 changed files with 6 additions and 3 deletions
3
.github/workflows/actionlint.yaml
vendored
3
.github/workflows/actionlint.yaml
vendored
|
|
@ -5,8 +5,5 @@ on:
|
|||
- '.github/workflows/**'
|
||||
jobs:
|
||||
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
|
||||
uses: hashicorp/vault-workflows-common/.github/workflows/actionlint.yaml@main
|
||||
|
|
|
|||
6
.github/workflows/build.yml
vendored
6
.github/workflows/build.yml
vendored
|
|
@ -134,6 +134,9 @@ 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
|
||||
|
|
@ -205,6 +208,9 @@ 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
|
||||
|
|
|
|||
Loading…
Reference in a new issue