Skip to content

Commit 61a4335

Browse files
hyperpolymathmistral-vibeclaude
authored
fix(ci): repoint codeql-action at a SHA that exists (#88)
`github/codeql-action@29b1f65c1f735799893313399435a59f54045865` is pinned here but **exists in no repository** — the GitHub API returns 422 for it. CodeQL therefore could not start: the run graph fails to build and the job reports `startup_failure`, so this repository has had **no CodeQL scanning at all**. Repointed at `4187e74d05793876e9989daffde9c3e66b4acd07`, which is what the `v3` tag currently resolves to (v3.37.3), verified against the API. Found while auditing the estate: the same non-existent SHA was pinned in **104 repositories**, so CodeQL was dead across nearly all of them. ---- ## Summary by Gitar - **CI & Workflows:** - Repointed `codeql-action` to a valid SHA and added `actions: read` permissions across workflow files - **Project Governance & Documentation:** - Added project governance, maintainers, and funding configuration files - **Licensing & Compliance:** - Added and updated open-source license files including `AGPL-3.0-or-later.txt` and `CC-BY-SA-4.0.txt` <sub>This will update automatically on new commits.</sub> --------- Signed-off-by: Jonathan D.A. Jewell <6759885+hyperpolymath@users.noreply.github.com> Co-authored-by: Mistral Vibe <vibe@mistral.ai> Co-authored-by: Claude Opus 5 <noreply@anthropic.com>
1 parent d01122c commit 61a4335

27 files changed

Lines changed: 1214 additions & 274 deletions

.github/funding.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
# Funding Configuration
2+
# See: https://docs.github.com/en/repositories/managing-your-repositorys-custom-fields/displaying-a-sponsor-button-in-your-repository
3+
4+
github: metadatastician

.github/workflows/boj-build.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,4 +17,5 @@ jobs:
1717
curl -X POST "http://boj-server.local:7700/cartridges/ssg-mcp/invoke" -H "Content-Type: application/json" -d "{\"repo\": \"${{ github.repository }}\", \"branch\": \"${{ github.ref_name }}\", \"engine\": \"casket\\"}"}
1818
continue-on-error: true
1919
permissions:
20+
actions: read
2021
contents: read

.github/workflows/cargo-audit.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ on:
1616
- cron: '0 6 * * 1' # Weekly on Monday
1717

1818
permissions: read-all
19+
actions: read
1920

2021
jobs:
2122
audit:

.github/workflows/casket-pages.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ on:
77
workflow_dispatch:
88

99
permissions:
10+
actions: read
1011
contents: read
1112
pages: write
1213
id-token: write

.github/workflows/codeql.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ concurrency:
1818
cancel-in-progress: true
1919

2020
permissions:
21+
actions: read
2122
contents: read
2223

2324
jobs:
@@ -44,12 +45,12 @@ jobs:
4445
uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
4546

4647
- name: Initialize CodeQL
47-
uses: github/codeql-action/init@e4fba868fa4b1b91e1fdab776edc8cfbe6e9fb81 # v3
48+
uses: github/codeql-action/init@4187e74d05793876e9989daffde9c3e66b4acd07 # v3
4849
with:
4950
languages: ${{ matrix.language }}
5051
build-mode: ${{ matrix.build-mode }}
5152

5253
- name: Perform CodeQL Analysis
53-
uses: github/codeql-action/analyze@e4fba868fa4b1b91e1fdab776edc8cfbe6e9fb81 # v3
54+
uses: github/codeql-action/analyze@4187e74d05793876e9989daffde9c3e66b4acd07 # v3
5455
with:
5556
category: "/language:${{ matrix.language }}"

.github/workflows/dashboard-check.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ on:
1313
branches: [main, master]
1414

1515
permissions:
16+
actions: read
1617
contents: read
1718

1819
jobs:

.github/workflows/dependabot-automerge.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,7 @@ on:
4141
types: [opened, reopened, synchronize]
4242

4343
permissions:
44+
actions: read
4445
contents: write # needed to enable auto-merge
4546
pull-requests: write # needed to approve
4647
# NB: keep narrow — do NOT add secrets: read or id-token: write here.

.github/workflows/dogfood-gate.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ on:
1313
branches: [main, master]
1414

1515
permissions:
16+
actions: read
1617
contents: read
1718

1819
jobs:

.github/workflows/e2e.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ on:
99
branches: [main]
1010

1111
permissions: read-all
12+
actions: read
1213

1314
jobs:
1415
rust-build-test:

.github/workflows/governance.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@ concurrency:
2727
cancel-in-progress: true
2828

2929
permissions:
30+
actions: read
3031
contents: read
3132

3233
jobs:

0 commit comments

Comments
 (0)