Liquibase github action help for databricks

How do I use liquibase-github-actions/update: Official GitHub Action to run Liquibase Update for databricks unity catalog schema management.
Any examples will greatly help

what I tried:
I created a github workflow with the below step. But its failing with the error
[Databricks][JDBCDriver](500593) Communication link failure. Failed to connect to server. Reason: HTTP Response code: 401, Error message: Unauthorized.
The same works when using the cli

name: Liquibase Update
uses: liquibase-github-actions/update@v4.33.0
with:
url: jdbc:databricks://databricks_host:443/default;transportMode=http;ssl=1;AuthMech=3;UID=token;PWD=${{ steps.databricks.outputs.token }};httpPath=/sql/1.0/warehouses/workspaceid;ConnCatalog=catalog;ConnSchema=schema;UserAgentEntry=Liquibase;EnableArrow=0
username: token
password: ${{ steps.databricks.outputs.token }}
driver: com.databricks.client.jdbc.Driver
classpath: liquibase/jdbc_drivers/DatabricksJDBC42.jar
changeLogFile: liquibase/changelog.sql