Builds for Liquibase promotion not working on GitHub hosted runner while its working on self-hosted runner #190467
Replies: 1 comment
-
|
💬 Your Product Feedback Has Been Submitted 🎉 Thank you for taking the time to share your insights with us! Your feedback is invaluable as we build a better GitHub experience for all our users. Here's what you can expect moving forward ⏩
Where to look to see what's shipping 👀
What you can do in the meantime 💻
As a member of the GitHub community, your participation is essential. While we can't promise that every suggestion will be implemented, we want to emphasize that your feedback is instrumental in guiding our decisions and priorities. Thank you once again for your contribution to making GitHub even better! We're grateful for your ongoing support and collaboration in shaping the future of our platform. ⭐ |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
Why are you starting this discussion?
Bug
What GitHub Actions topic or product is this about?
Actions Runner
Discussion Details
we are doing Liquibase deployment through GitHub hosted runner. We use maven encrypted password for MSSQL server authentication.
Liquibase version used: 3.7
Current runner version: '2.332.0'
Runner details:
runs-on:
group: enterprise_runner_group
labels: "enterprise-ubuntu-22.04"
we have entries in pom.xml like below.
Profile_ID
<liquibase.driver>net.sourceforge.jtds.jdbc.Driver</liquibase.driver>
<liquibase.changeLogFile>src/main/resources/XYZ/MainChangeLog.xml</liquibase.changeLogFile>
<liquibase.url>jdbc:jtds:sqlserver://XYZ;databaseName=XYZ;domain=XYZ;</liquibase.url>
<liquibase.username>${settings.servers.id.username}</liquibase.username>
<liquibase.password>${settings.servers.id.password}</liquibase.password>
Somehow since 17th March 2026, we are getting below error when GitHub action build runs on GitHub hosted runner.
+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Failed to execute goal org.liquibase:liquibase-maven-plugin:3.7.0:update (default-cli) on project service-claims-db: Error setting up or running Liquibase: liquibase.exception.DatabaseException: java.sql.SQLException: Login failed. The login is from an untrusted domain and cannot be used with Integrated authentication. -> [Help 1]
+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
However, same build is passing through self-hosted runner.
Observations:
--> DB user created (with the help of DBA) and hardcoded creds in pom.xml, connection string without domain=AMER ==> Working on GitHub hosted runner.
--> DB user created (with the help of DBA) and used encrypted password in pom.xml, connection string without domain=AMER ==> Not Working on GitHub hosted runner.
--> DB user created (with the help of DBA) and used encrypted password in pom.xml, connection string without domain=AMER ==> Working on self-hosted runner.
we need your help to investigate further if there is anything changed for GitHub hosted runners.
Beta Was this translation helpful? Give feedback.
All reactions