ci(deps): Bump actions/setup-python from 5 to 6#4
Open
dependabot[bot] wants to merge 1 commit intomasterfrom
Open
ci(deps): Bump actions/setup-python from 5 to 6#4dependabot[bot] wants to merge 1 commit intomasterfrom
dependabot[bot] wants to merge 1 commit intomasterfrom
Conversation
Bumps [actions/setup-python](https://github.com/actions/setup-python) from 5 to 6. - [Release notes](https://github.com/actions/setup-python/releases) - [Commits](actions/setup-python@v5...v6) --- updated-dependencies: - dependency-name: actions/setup-python dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
Contributor
Author
LabelsThe following labels could not be found: Please fix the above issues or remove invalid values from |
ninjat6
pushed a commit
that referenced
this pull request
Apr 27, 2026
…via SDLC-001 middleware Phase 5 #3 — applies SDLC-001's require_release_in_scope dependency to the /api/licenses/releases/{release_id}/violations endpoint. Closes CWE-639 IDOR; uses 404 (not 403) to prevent release_id enumeration oracle (CWE-204 Observable Response Discrepancy). Verification type: poc-rerun Before fix: SEC-001b-licenses-release-idor.py [IDOR CONFIRMED] viewerB GET /licenses/releases/<orgA_id>/violations → HTTP 200 + 1 violation entry (orgA's GPL component) cross-tenant license violation disclosure proven After fix: SEC-001b-licenses-release-idor.py [NO LEAK] viewerB GET /licenses/releases/<orgA_id>/violations → HTTP 404 "Release not found" SEC-001b primary_remediation verified post-fix (assert_release_in_scope returns 404 in both 'not found' and 'cross-org' cases — no oracle) Regression: python test_all.py 54/54 PASS, 0 FAIL SDLC-001 enforcement test: 2 missing → 1 missing (only SEC-001d remains; closing in Phase 5 #5) Files modified: backend/app/api/licenses.py:10 — added require_release_in_scope import backend/app/api/licenses.py:144-154 — release_violations endpoint: - signature: release_id: str + manual lookup → release: Release = Depends(require_release_in_scope) - removed manual `db.query(Release).filter(...).first()` + 404 raise (now done by the dependency, with bonus joinedload(product) to avoid N+1) - removed manual `if not release` check (dependency handles) - body: Component.release_id == release_id → release.id - response: "release_id": release_id → release.id - added docstring noting SEC-001b fix + 404-not-403 rationale Audit doc: SEC-001b status: open → fixed (2026-04-26 by Phase 5 #3 commit) Top-10 progress: #0 done, #1 done (in-progress), #2 done, #3 done. Next: #4 SEC-001c (policies summary, mirrors #2 pattern). Tooling: Claude Code (Anthropic) Methodology-review: see .knowledge/audit/phase-4-summary-2026-04-26.md §0
ninjat6
pushed a commit
that referenced
this pull request
Apr 27, 2026
- update top-level status: "Phase 5 remediation + Phase 6 verification complete (2026-04-26)" — 10/10 Top-10 + SEC-014 P2 + SEC-023 (enforcement-test discovered) all fixed - new §9 commit-by-commit trail with PoC verdicts for all 11 fixes - auto-pause table: #2 fired (stale uvicorn workers, not a code issue) and #4 fired (SEC-023 surfaced); both resolved without scope change - §5.4 lesson learned: SEC-003 first-pass missed uvicorn's built-in ProxyHeadersMiddleware silently rewriting request.client.host — three-layer fix needed. Same methodological pattern as SEC-023: PoC re-run after-fix is load-bearing, not formality Phase 6 verification — all green: • SEC-001a/b/c/d PoCs: NO LEAK (403/404) • SEC-002 PoC: SAFE 400 in 0.00s • SEC-003 PoC: NO LEAK rate-limited • SEC-014 PoC: encryption round-trip + wrong-pass rejection • SDLC-001 enforcement: 42/42 release-scoped routes • test_all.py: 55/55 Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.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.
Bumps actions/setup-python from 5 to 6.
Release notes
Sourced from actions/setup-python's releases.
... (truncated)
Commits
a309ff8Bump urllib3 from 2.6.0 to 2.6.3 in /tests/data (#1264)bfe8cc5Upgrade@actionsdependencies to Node 24 compatible versions (#1259)4f41a90Bump urllib3 from 2.5.0 to 2.6.0 in /tests/data (#1253)83679a8Bump@types/nodefrom 24.1.0 to 24.9.1 and update macos-13 to macos-15-intel ...bfc4944Bump prettier from 3.5.3 to 3.6.2 (#1234)97aeb3eBump requests from 2.32.2 to 2.32.4 in /tests/data (#1130)443da59Bump actions/publish-action from 0.3.0 to 0.4.0 & Documentation update for pi...cfd55cagraalpy: add graalpy early-access and windows builds (#880)bba65e5Bump typescript from 5.4.2 to 5.9.3 and update docs/advanced-usage.md (#1094)18566f8Improve wording and "fix example" (remove 3.13) on testing against pre-releas...Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting
@dependabot rebase.Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR:
@dependabot rebasewill rebase this PR@dependabot recreatewill recreate this PR, overwriting any edits that have been made to it@dependabot show <dependency name> ignore conditionswill show all of the ignore conditions of the specified dependency@dependabot ignore this major versionwill close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)@dependabot ignore this minor versionwill close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)@dependabot ignore this dependencywill close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)