We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
option for post job cleanup of creds
Action YAML
- uses: google-github-actions/setup-gcloud@master with: project_id: my-project service_account_key: ${{ secrets.MY_SA_KEY }} export_default_credentials: true post_job_credential_cleanup: true
a rudimentary way to do this would be something like:
rm -f "$GOOGLE_APPLICATION_CREDENTIALS" unset GOOGLE_APPLICATION_CREDENTIALS
Additional information gives confidence that if a worker is reused, the creds wont still be hanging around
The text was updated successfully, but these errors were encountered:
I think such clean-up should be enabled by default.
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
TL;DR
option for post job cleanup of creds
Design
Action YAML
a rudimentary way to do this would be something like:
Additional information
gives confidence that if a worker is reused, the creds wont still be hanging around
The text was updated successfully, but these errors were encountered: