mirror of
https://github.com/hashicorp/vault-action.git
synced 2025-11-07 15:16:56 +00:00
test commit
This commit is contained in:
parent
2e4d53b28d
commit
4f749bbbd2
4 changed files with 19658 additions and 253 deletions
|
|
@ -89,10 +89,14 @@ inputs:
|
|||
secretEncodingType:
|
||||
description: 'The encoding type of the secret to decode. If not specified, the secret will not be decoded. Supported values: base64, hex, utf8'
|
||||
required: false
|
||||
revokeKey:
|
||||
description: 'When set to true, automatically revokes the vault token after the run is complete.'
|
||||
default: "false"
|
||||
required: false
|
||||
runs:
|
||||
using: 'node16'
|
||||
main: 'dist/index.js'
|
||||
post: "dist/cache-save/index.js"
|
||||
post: "dist/revoke/index.js"
|
||||
branding:
|
||||
icon: 'unlock'
|
||||
color: 'gray-dark'
|
||||
|
|
|
|||
541
dist/index.js
vendored
541
dist/index.js
vendored
File diff suppressed because one or more lines are too long
19362
dist/revoke/index.js
vendored
Normal file
19362
dist/revoke/index.js
vendored
Normal file
File diff suppressed because one or more lines are too long
|
|
@ -4,7 +4,7 @@
|
|||
"description": "A Github Action that allows you to consume vault secrets as secure environment variables.",
|
||||
"main": "dist/index.js",
|
||||
"scripts": {
|
||||
"build": "ncc build src/entry.js -o dist",
|
||||
"build": "ncc build src/entry.js -o dist && ncc build src/revoke.js -o dist/revoke",
|
||||
"test": "jest",
|
||||
"test:integration:basic": "jest -c integrationTests/basic/jest.config.js",
|
||||
"test:integration:enterprise": "jest -c integrationTests/enterprise/jest.config.js",
|
||||
|
|
|
|||
Loading…
Reference in a new issue