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/**'
|
- '.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
|
||||||
|
|
|
||||||
6
.github/workflows/build.yml
vendored
6
.github/workflows/build.yml
vendored
|
|
@ -134,6 +134,9 @@ jobs:
|
||||||
|
|
||||||
- name: Test Vault Action (default KV V2)
|
- name: Test Vault Action (default KV V2)
|
||||||
uses: ./
|
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
|
id: kv-secrets
|
||||||
with:
|
with:
|
||||||
url: http://localhost:8200
|
url: http://localhost:8200
|
||||||
|
|
@ -205,6 +208,9 @@ jobs:
|
||||||
|
|
||||||
- name: Test Vault Action (default KV V2)
|
- name: Test Vault Action (default KV V2)
|
||||||
uses: ./
|
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
|
id: kv-secrets-tls
|
||||||
with:
|
with:
|
||||||
url: https://localhost:8200
|
url: https://localhost:8200
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue