-
Notifications
You must be signed in to change notification settings - Fork 3
Build 984 hardening #80
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
Merged
Merged
Changes from all commits
Commits
Show all changes
33 commits
Select commit
Hold shift + click to select a range
73f88e0
Build-983-Phase4-Dispatcher: ADR-020 Phase 4 Event Lifecycle Refactor…
mkalhitti-cloud 209033c
fix(pr73): phantom blocks, shutdown guard, culture parse, unused fields
mkalhitti-cloud 7e79a5b
docs: finalize mission tracking and P5 sign-off for Build 983
mkalhitti-cloud 471c924
docs: add implementation plan for PR #75 repairs
mkalhitti-cloud b13bed6
Apply PR75 repairs D1 D2 D3 D6
mkalhitti-cloud 3bac30d
fix(adv1): upgrade exception logging to .ToString() for stack trace c…
mkalhitti-cloud 2a1b023
fix: upgrade pre-existing MMIO exception logging to .ToString() to cl…
mkalhitti-cloud 2f7f0bb
B984: Open Build-984 Source Hardening -- Phase 4 extraction confirmed…
mkalhitti-cloud e72ffe2
B984-P3: Architect plan -- 12 source hardening repairs + post-product…
mkalhitti-cloud 159fb9a
B984: Apply 12 source hardening repairs (F-01 to F-12)
mkalhitti-cloud 8cb3179
B984-P6: Close validation gate -- 12 repairs confirmed live (1111.005…
mkalhitti-cloud 0005bb2
B984: Apply final 4 repairs (F-13, F-14, F-15, F-16)
mkalhitti-cloud 8252aed
fix(sima): update stale B948 tags to B984
mkalhitti-cloud 0fbb579
build(compliance): standardize StyleCop headers and update version to…
mkalhitti-cloud b53f69e
docs: update Master Roadmap to reflect Build-984 hardening completion
mkalhitti-cloud e981aca
ci: fix MSB1011 ambiguity by explicitly targeting Linting.csproj
mkalhitti-cloud 5d1c1a2
ci: allow environmental failures in hosted runners (missing NT8 assem…
mkalhitti-cloud 6164287
ci: harden sonarcloud and tests to handle missing dependencies
mkalhitti-cloud 0b2e707
Merge branch 'main' of https://github.com/mkalhitti-cloud/universal-o…
mkalhitti-cloud b7ad281
security(ci): install 6-pillar workflow hardening suite [Build 984.1]
mkalhitti-cloud a2652c8
docs: finalize B984 Workflow Hardening plan and nexus state
mkalhitti-cloud b210656
chore(ci): harden workflows and fix Jules PR review triggers
mkalhitti-cloud 0a4b803
security(ci): install 6-pillar workflow hardening suite [Build 984.1]
mkalhitti-cloud 2c7bb06
docs: finalize B984 Workflow Hardening plan and nexus state
mkalhitti-cloud a2bf7c3
chore(ci): harden workflows and fix Jules PR review triggers
mkalhitti-cloud 614fd20
fix(ci): switch markdown link checker and harden Jules context
mkalhitti-cloud 2b39409
fix(ci): correct action name for linkinator and fix parameter name
mkalhitti-cloud 3cf62d6
infra: harden Jules PR Review with branch resolution and polling
mkalhitti-cloud 5d238f4
infra: fix Jules AutomationMode enum value
mkalhitti-cloud a5a7f68
infra: complete hardening of Jules workflow and SHA pinning
mkalhitti-cloud a4a8603
Merge main and resolve conflicts in documentation
mkalhitti-cloud 9a913b4
chore: save local settings changes
mkalhitti-cloud 56dc0a5
Merge main and resolve conflicts in workflows
mkalhitti-cloud File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,10 @@ | ||
| { | ||
| "ignorePatterns": [ | ||
| { "pattern": "^file:///" } | ||
| ], | ||
| "timeout": "20s", | ||
| "retryOn429": true, | ||
| "retryCount": 5, | ||
| "fallbackToGet": true, | ||
| "aliveStatusCodes": [200, 206] | ||
| } |
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,23 @@ | ||
| name-template: 'Build $NEXT_PATCH_VERSION' | ||
| tag-template: 'v$NEXT_PATCH_VERSION' | ||
| categories: | ||
| - title: '🛡️ Security & Hardening' | ||
| labels: | ||
| - 'security' | ||
| - 'hardening' | ||
| - title: '🔍 Forensics & Audits' | ||
|
mkalhitti-cloud marked this conversation as resolved.
|
||
| labels: | ||
| - 'forensics' | ||
| - 'audit' | ||
| - title: '🚀 Features' | ||
|
mkalhitti-cloud marked this conversation as resolved.
|
||
| labels: | ||
| - 'feature' | ||
| - title: '🚀 Core Updates' | ||
|
mkalhitti-cloud marked this conversation as resolved.
|
||
| labels: | ||
| - 'core' | ||
| - title: '🐛 Bug Fixes' | ||
|
mkalhitti-cloud marked this conversation as resolved.
|
||
| labels: | ||
| - 'bug' | ||
| template: | | ||
| ## Changes | ||
| $CHANGES | ||
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,27 @@ | ||
| name: Codecov Coverage | ||
| on: | ||
| workflow_run: | ||
| workflows: [".NET Test"] | ||
| types: [completed] | ||
|
|
||
| jobs: | ||
| upload: | ||
| runs-on: ubuntu-latest | ||
| if: ${{ github.event.workflow_run.conclusion == 'success' }} | ||
| steps: | ||
| - name: Checkout repository | ||
| uses: actions/checkout@v4 | ||
|
|
||
| - name: Download Coverage Artifact | ||
| uses: actions/download-artifact@v4 | ||
| with: | ||
| name: coverage-opencover | ||
| github-token: ${{ secrets.GITHUB_TOKEN }} | ||
| run-id: ${{ github.event.workflow_run.id }} | ||
|
mkalhitti-cloud marked this conversation as resolved.
|
||
|
|
||
| - name: Upload to Codecov | ||
| uses: codecov/codecov-action@v4 | ||
|
Check warning on line 23 in .github/workflows/codecov.yml
|
||
| with: | ||
| file: ./coverage.opencover.xml | ||
|
mkalhitti-cloud marked this conversation as resolved.
|
||
| token: ${{ secrets.CODECOV_TOKEN }} | ||
| fail_ci_if_error: true | ||
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
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,14 @@ | ||
| name: 'Dependency Review' | ||
| on: [pull_request] | ||
|
|
||
| permissions: | ||
| contents: read | ||
|
|
||
| jobs: | ||
| dependency-review: | ||
| runs-on: ubuntu-latest | ||
| steps: | ||
| - name: 'Checkout Repository' | ||
| uses: actions/checkout@v4 | ||
| - name: 'Dependency Review' | ||
| uses: actions/dependency-review-action@v4 |
Oops, something went wrong.
Oops, something went wrong.
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.
Uh oh!
There was an error while loading. Please reload this page.