expose get oidc token optioin for github sia#3218
Conversation
Signed-off-by: Henry Avetisyan <hga@yahooinc.com>
Summary of ChangesHello, I'm Gemini Code Assist1! I'm currently reviewing this pull request and will post my feedback shortly. In the meantime, here's a summary to help you and other reviewers quickly get up to speed! This pull request enhances the GitHub SIA daemon to support the retrieval of OpenID Connect (OIDC) tokens from Athenz ZTS. This enhancement allows GitHub Actions workflows to obtain and utilize OIDC tokens for authentication, improving integration with services that rely on OIDC for identity verification by exposing the token via the Highlights
Changelog
Activity
Using Gemini Code AssistThe full guide for Gemini Code Assist can be found on our documentation page, here are some quick tips. Invoking Gemini You can request assistance from Gemini at any point by creating a comment using either
Customization To customize Gemini Code Assist for GitHub experience, repository maintainers can create a configuration file and/or provide a custom code review style guide (such as PEP-8 for Python) by creating and adding files to a Limitations & Feedback Gemini Code Assist may make mistakes. Please leave feedback on any instances where its feedback is incorrect or counter productive. You can react with 👍 and 👎 on @gemini-code-assist comments. If you're interested in giving your feedback about your experience with Gemini Code Assist for Github and other Google products, sign up here. You can also get AI-powered code generation, chat, as well as code reviews directly in the IDE at no cost with the Gemini Code Assist IDE Extension. Footnotes
|
There was a problem hiding this comment.
Code Review
This pull request introduces a new feature to fetch an OIDC token from ZTS along with the X.509 certificate for GitHub SIA, exporting it to the GITHUB_ENV file for GitHub Actions workflows. However, it contains a high-severity environment variable injection vulnerability and a medium-severity secret leakage issue due to improper handling of the GITHUB_ENV file and lack of secret masking.
| log.Fatalf("OIDC Token not found in identity response") | ||
| } | ||
| // Open GITHUB_ENV in append mode, create if it doesn't exist | ||
| f, err := os.OpenFile(os.Getenv("GITHUB_ENV"), os.O_APPEND|os.O_CREATE|os.O_WRONLY, 0644) |
There was a problem hiding this comment.
minor comment: if "GITHUB_ENV" is not set, the information is indirectly shown to the user when OpenFile fails, and program exits.
may be, better to do a "" check and return a more direct message?
Signed-off-by: Henry Avetisyan <hga@yahooinc.com>
Description
Contribution Checklist:
Attach Screenshots (Optional)