From bb19dc96f36ff323ea5a4204a825ce87d2d1a67c Mon Sep 17 00:00:00 2001 From: BodoBolero Date: Wed, 30 Jul 2025 15:10:58 +0200 Subject: [PATCH] change oidc host --- .github/actions/lakebase_create_token/action.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/actions/lakebase_create_token/action.yml b/.github/actions/lakebase_create_token/action.yml index 34cdebf899..490b9ff2b7 100644 --- a/.github/actions/lakebase_create_token/action.yml +++ b/.github/actions/lakebase_create_token/action.yml @@ -11,7 +11,7 @@ inputs: oidc_host: description: 'OIDC host URL' required: false - default: 'https://dbc-55e65913-66de.dev.databricks.com' + default: 'dbc-55e65913-66de.dev.databricks.com' outputs: lakebase_bearer_token: @@ -26,7 +26,7 @@ runs: # A shell without `set -x` to not expose secrets in logs shell: bash -euo pipefail {0} run: | - res=$(curl -X POST "${OIDC_HOST}/oidc/v1/token" \ + res=$(curl -X POST "https://${OIDC_HOST}/oidc/v1/token" \ -w "%{http_code}" \ --header "Content-Type: application/x-www-form-urlencoded" \ --data "grant_type=client_credentials" \