diff --git a/.gitea/workflows/test.yaml b/.gitea/workflows/test.yaml index 0bf32de..124ff85 100644 --- a/.gitea/workflows/test.yaml +++ b/.gitea/workflows/test.yaml @@ -36,11 +36,12 @@ jobs: run: | # Start Vault server in background echo "🔐 Starting Hashicorp Vault development server" - vault server -dev -dev-root-token-id=root -dev-listen-address=0.0.0.0:8200 -dev-tls > vault.log 2>&1 & + vault server -dev -dev-root-token-id=root -dev-listen-address=127.0.0.1:8200 -dev-tls > vault.log 2>&1 & VAULT_PID=$! echo $VAULT_PID > vault.pid sleep 3 + export VAULT_SKIP_VERIFY=true if ! vault status; then echo "❌ Vault failed to start. Logs ($(wc -l vault.log) lines):" cat vault.log