-
Notifications
You must be signed in to change notification settings - Fork 698
Release 4.3.3 #1640
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: master
Are you sure you want to change the base?
Release 4.3.3 #1640
Conversation
* Add blocked popup detection with UI to retry * Remove test code * Share retry path * typecheck
* add action and canary release * update release and canary actions * fix release
🟡 Heimdall Review Status
|
| name: Authorize | ||
| runs-on: ubuntu-latest | ||
| steps: | ||
| - name: ${{ github.actor }} permission check to update release version | ||
| uses: "lannonbr/repo-permission-check-action@2.0.2" | ||
| with: | ||
| permission: "write" | ||
| env: | ||
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
|
|
||
| release: |
Check warning
Code scanning / CodeQL
Workflow does not contain permissions Medium
Show autofix suggestion
Hide autofix suggestion
Copilot Autofix
AI 5 months ago
To fix the issue, we need to add a permissions block to the authorize job. Since the job only checks permissions and does not perform any write operations, it should be granted the minimal contents: read permission. This ensures that the job has only the permissions it needs to function correctly.
The changes will be made in the .github/workflows/release.yml file. Specifically, a permissions block will be added to the authorize job.
-
Copy modified lines R15-R16
| @@ -14,2 +14,4 @@ | ||
| runs-on: ubuntu-latest | ||
| permissions: | ||
| contents: read | ||
| steps: |
Release Branch