Moar bugs squashed
Some checks failed
Test / tests (windows-amd64) (push) Failing after 28s
Test / tests (linux-amd64) (push) Successful in 27s
Run Gosec / tests (push) Successful in 51s
Test / tests (linux-arm64) (push) Has been cancelled
Test / tests (darwin-amd64) (push) Successful in 20s

This commit is contained in:
2025-09-09 16:43:52 +02:00
parent e3752ce910
commit f973e305f0
2 changed files with 2 additions and 2 deletions

View File

@@ -1,6 +1,6 @@
# Populate our test secrets
Write-Output "🔐 Populating test secrets:"
& "./vault.exe" vault kv put "${{ vars.TEST_VAULT_KEY }}" data="${{ vars.TEST_VAULT_VALUE }}"
& "./vault.exe" vault kv put "${TEST_VAULT_KEY}" data="${TEST_VAULT_VALUE}"
# Populate our test transit backend with key
Write-Output "🔐 Populating test transit backend:"

View File

@@ -1,6 +1,6 @@
Write-Host "Starting Vault dev server..."
$vaultProc = Start-Process vault `
-ArgumentList "server -dev -dev-tls" `
-ArgumentList "server -dev -dev-root-token-id=root -dev-listen-address=127.0.0.1:8200 -dev-tls" `
-RedirectStandardOutput "vault.out.log" `
-RedirectStandardError "vault.err.log" `
-WindowStyle Hidden `