-
Notifications
You must be signed in to change notification settings - Fork 25
Update to ACK runtime v0.54.1, code-generator v0.54.0
#136
New issue
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
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,10 @@ | ||
| name: Hydrate Go Proxy | ||
|
|
||
| on: | ||
| push: | ||
| branches: | ||
| - main | ||
|
|
||
| jobs: | ||
| call-hydrate-go-proxy: | ||
| uses: aws-controllers-k8s/.github/.github/workflows/reusable-postsubmit.yaml@main | ||
Large diffs are not rendered by default.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Check warning
Code scanning / CodeQL
Workflow does not contain permissions Medium
Copilot Autofix
AI 12 days ago
The best way to fix this problem is to add a
permissionsblock at the root of the workflow file (.github/workflows/postsubmit.yaml). This block ensures that all jobs (including those usinguses:for reusable workflows) get the defined least-privilege permissions forGITHUB_TOKEN. As a starting point, setcontents: read, which is typically sufficient for most postsubmit trigger jobs, unless more granular write permissions (such asissues: writeorpull-requests: write) are specifically needed for the job or called workflows. Place the permissions block immediately below the workflownameand before theon:key, or just under theon:key (both positions are valid, but conventionally it's placed after thename). The code change consists of a single block insertion.