chore(ci): add Dependabot config and CodeQL code scanning#3676
Merged
Conversation
Enable Dependabot version updates (gomod for the root and desktop modules; npm for desktop/frontend, site, and npm/reasonix; github-actions) with grouped minor/patch PRs to keep noise down, and add a CodeQL workflow (go, javascript-typescript, actions; build-mode none so the multi-module repo needs no build step) on push/PR to main-v2 plus a weekly scan.
|
You are seeing this message because GitHub Code Scanning has recently been set up for this repository, or this pull request contains the workflow file for the Code Scanning tool. What Enabling Code Scanning Means:
For more information about GitHub Code Scanning, check out the documentation. |
SuMuxi66
pushed a commit
to SuMuxi66/DeepSeek-Reasonix
that referenced
this pull request
Jun 10, 2026
) * chore(ci): add Dependabot config and CodeQL code scanning Enable Dependabot version updates (gomod for the root and desktop modules; npm for desktop/frontend, site, and npm/reasonix; github-actions) with grouped minor/patch PRs to keep noise down, and add a CodeQL workflow (go, javascript-typescript, actions; build-mode none so the multi-module repo needs no build step) on push/PR to main-v2 plus a weekly scan. * chore(ci): use codeql-action v4 (v3 deprecates Dec 2026) * fix(ci): CodeQL Go requires a build — use autobuild, not none --------- Co-authored-by: reasonix <reasonix@deepseek.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Security & quality hardening for the repo (part API-side, part config files).
Already enabled via repo settings (no file needed):
(Secret scanning + push protection were already on.)
This PR adds:
.github/dependabot.yml— weekly version updates for: gomod (/+/desktop), npm (/desktop/frontend,/site,/npm/reasonix), and github-actions (/). Minor/patch updates are grouped to keep PR noise down; majors come as individual PRs..github/workflows/codeql.yml— CodeQL code scanning forgo,javascript-typescript, andactions, on push/PR tomain-v2plus a weekly scan. Usesbuild-mode: noneso the two Go modules (root + desktop) need no build step and all source is covered.Notes
security_events), so it's added as a committed workflow (advanced setup) instead — which is reviewable and dependabot keeps the action versions current.secret_scanning_validity_checkscould not be toggled via API on this repo; enable it in the UI if wanted (Settings → Code security).SECURITY.md(pairs with private vulnerability reporting) was intentionally left out — say the word and I'll add one.