-
Notifications
You must be signed in to change notification settings - Fork 17
Update to ACK runtime v0.56.0, code-generator v0.56.0
#117
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.
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 16 days ago
To fix the problem, add an explicit
permissionsblock to the workflow (root-level, so all jobs inherit it unless overridden), or add it to the relevant job. Since this workflow does not run any steps of its own, but delegates to a reusable workflow, GitHub allows specifying a minimalpermissions: {}(none), or setting only the required permissions for the called workflow. Unless you know more permissions are needed,{}is a good starting point or you can setcontents: read(the most common minimum). Edit.github/workflows/postsubmit.yamlto insert apermissionssection after the workflow name (name:), and beforeon:(recommended placement for root-level permissions).