-
Notifications
You must be signed in to change notification settings - Fork 41
Update to ACK runtime v0.54.1, code-generator v0.54.0
#337
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
base: main
Are you sure you want to change the base?
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 | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,6 +1,4 @@ | ||
| # See the OWNERS docs at https://go.k8s.io/owners | ||
|
|
||
| approvers: | ||
| - core-ack-team | ||
| reviewers: | ||
| - sagemaker-ack-team | ||
| - core-ack-team |
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.
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 5 days ago
To fix this issue, add a
permissionsblock to the workflow file.github/workflows/postsubmit.yaml. The block should be placed at the root, above thejobs:key, making the permission settings apply to all jobs unless overridden by the reusable workflow or within specific jobs. As the optimal least-privilege configuration depends on what the invoked workflow and jobs do, a safe starting point iscontents: read, which is the most restrictive and recommended by GitHub for workflows that do not require write access; you can add other entries (likepull-requests: write) only if required. Since the shown code doesn't indicate any write operations, using onlycontents: readis appropriate.Edit the file .github/workflows/postsubmit.yaml to add:
This should be inserted after the
name:and before theon:line.No other methods, imports, or changes are required for this fix.