None
FR
Running Migrations To Google Cloud SQL Database From Github Actions
[]
Emil Privér
Easier connection authorization: The Cloud SQL Auth Proxy uses IAM permissions to control who and what can connect to your Cloud SQL instances. To connect to a Cloud SQL instance using private IP, the Cloud SQL Auth Proxy must be on a resource with access to the same VPC network as the instance. jobs : database-migrations : runs-on : ubuntu - latest steps : - uses : actions/checkout@v4 with : token : $ { { secrets.token } } // this is used to allow checkout to pull private repos - name : Apply netrc creds with direct input uses : little - core - labs/netrc - creds@master with : machine : github.com login : x - oauth - basic password : $ { { secrets.token } } // this is used to allow checkout to pull private repos - name : Google auth id : auth uses : google - github - actions/auth@v1 with…