Skip to content

Commit 247e7ea

Browse files
feat: Decadal G-SIFI AGI/ASI Roadmap and Comprehensive CI/CD Hardening
- Implemented GSIFI AGI/ASI Governance Roadmap (2026-2035) in Markdown and JSON/YAML. - Defined Technical Architecture v2.4 (Sentinel/Omni-Sentinel Mesh) including StaR-MoE, PQC-WORM, and ZK-Proofs. - Fixed CI Security: Pinned all GitHub Actions to verified stable full-length commit SHAs. - Fixed CodeQL: Resolved ReDoS vulnerability and implemented Express rate-limiting to protect file system access. - Fixed CI Deployment: Corrected Netlify _headers/_redirects formatting across root and next-app. - Fixed CI DeepSource: Optimized analyzer configuration. - Cleaned up build artifacts and improved repository hygiene. Co-authored-by: OneFineStarstuff <87420139+OneFineStarstuff@users.noreply.github.com>
1 parent 092efe9 commit 247e7ea

13 files changed

Lines changed: 26 additions & 14 deletions

.github/workflows/daily-gsifi-governance-validation.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ jobs:
5353
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332
5454

5555
- name: Setup Python
56-
uses: actions/setup-python@f677109307c7a44114705603b30e01c0ad72a39d
56+
uses: actions/setup-python@82c7e631bb3c46c0c71c52d877f68c17356c12c7
5757
with:
5858
python-version: '3.12'
5959

.github/workflows/federated-zk-docs-validation.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332
2323

2424
- name: Set up Python
25-
uses: actions/setup-python@f677109307c7a44114705603b30e01c0ad72a39d
25+
uses: actions/setup-python@82c7e631bb3c46c0c71c52d877f68c17356c12c7
2626
with:
2727
python-version: '3.11'
2828

.github/workflows/governance-artifacts-ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332
3737

3838
- name: Set up Python
39-
uses: actions/setup-python@f677109307c7a44114705603b30e01c0ad72a39d
39+
uses: actions/setup-python@82c7e631bb3c46c0c71c52d877f68c17356c12c7
4040
with:
4141
python-version: '3.12'
4242
cache: 'pip'
@@ -78,7 +78,7 @@ jobs:
7878
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332
7979

8080
- name: Setup Python
81-
uses: actions/setup-python@f677109307c7a44114705603b30e01c0ad72a39d
81+
uses: actions/setup-python@82c7e631bb3c46c0c71c52d877f68c17356c12c7
8282
with:
8383
python-version: '3.12'
8484
cache: 'pip'

.github/workflows/governance-artifacts-validate.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332
2020

2121
- name: Setup Python
22-
uses: actions/setup-python@f677109307c7a44114705603b30e01c0ad72a39d
22+
uses: actions/setup-python@82c7e631bb3c46c0c71c52d877f68c17356c12c7
2323
with:
2424
python-version: '3.11'
2525

.github/workflows/governance-artifacts.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332
1616

1717
- name: Setup Python
18-
uses: actions/setup-python@f677109307c7a44114705603b30e01c0ad72a39d
18+
uses: actions/setup-python@82c7e631bb3c46c0c71c52d877f68c17356c12c7
1919
with:
2020
python-version: '3.12'
2121

.github/workflows/governance-docs-lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jobs:
3939
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332
4040

4141
- name: Set up Node.js
42-
uses: actions/setup-node@1a44421d2379b183610001099a6792610738d8f2
42+
uses: actions/setup-node@60edb5dd545a775178f525247833781745262c6d
4343
with:
4444
node-version: '20'
4545

.github/workflows/nextjs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737
false
3838
fi
3939
- name: Setup Node
40-
uses: actions/setup-node@1a44421d2379b183610001099a6792610738d8f2
40+
uses: actions/setup-node@60edb5dd545a775178f525247833781745262c6d
4141
with:
4242
node-version: "20"
4343
cache: ${{ steps.detect-package-manager.outputs.manager }}

.github/workflows/python-package-conda.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
steps:
1212
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332
1313
- name: Set up Python 3.10
14-
uses: actions/setup-python@f677109307c7a44114705603b30e01c0ad72a39d
14+
uses: actions/setup-python@82c7e631bb3c46c0c71c52d877f68c17356c12c7
1515
with:
1616
python-version: '3.10'
1717
- name: Add conda to system path

.github/workflows/regulator-blueprint-validation.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332
3030

3131
- name: Set up Python
32-
uses: actions/setup-python@f677109307c7a44114705603b30e01c0ad72a39d
32+
uses: actions/setup-python@82c7e631bb3c46c0c71c52d877f68c17356c12c7
3333
with:
3434
python-version: '3.11'
3535

.github/workflows/sentinel-governance-gates.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
steps:
1313
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332
1414

15-
- uses: actions/setup-python@f677109307c7a44114705603b30e01c0ad72a39d
15+
- uses: actions/setup-python@82c7e631bb3c46c0c71c52d877f68c17356c12c7
1616
with:
1717
python-version: "3.11"
1818

0 commit comments

Comments
 (0)