chore(ci): Maximize CI/CD values (Dependabot & Permissions)#3
chore(ci): Maximize CI/CD values (Dependabot & Permissions)#3hyperpolymath merged 3 commits intomainfrom
Conversation
There was a problem hiding this comment.
💡 Codex Review
Here are some automated review suggestions for this pull request.
Reviewed commit: d06fc33c5d
ℹ️ About Codex in GitHub
Your team has set up Codex to review pull requests in this repo. Reviews are triggered when you
- Open a pull request for review
- Mark a draft as ready
- Comment "@codex review".
If Codex has suggestions, it will comment; otherwise it will react with 👍.
Codex can also answer questions or update the PR. Try commenting "@codex address that feedback".
.github/workflows/boj-build.yml
Outdated
| # Send a secure trigger to boj-server to build this repository | ||
| curl -X POST "http://boj-server.local:7700/cartridges/ssg-mcp/invoke" -H "Content-Type: application/json" -d "{\"repo\": \"${{ github.repository }}\", \"branch\": \"${{ github.ref_name }}\", \"engine\": \"casket\\"}"} | ||
| continue-on-error: true | ||
| permissions: read-all |
There was a problem hiding this comment.
Avoid granting
read-all to this workflow
In .github/workflows/boj-build.yml the job only runs actions/checkout@v4 and a curl command, so contents: read is the only token scope it needs. On repos or orgs that use restricted default GITHUB_TOKEN permissions, explicitly setting permissions: read-all widens the token to every readable scope (issues, PRs, packages, etc.), which increases the blast radius if the runner or one of these steps is compromised.
Useful? React with 👍 / 👎.
This automated PR updates your CI/CD configurations to maximize value and security.
github-actionsis monitored for updates.permissions: read-allto workflows missing explicit permissions.