Skip to content

Commit 852d958

Browse files
hyperpolymathclaude
andcommitted
merge main: keep the workflow valid
Conflict is main's two invalid constructs, both kept removed on this branch: * a duplicated `secrets: inherit` key. GitHub Actions rejects duplicate keys outright; Python's yaml.safe_load accepts them (last wins), so local linting never caught it. * the inline trufflehog job, which creates ZERO jobs and startup_failures the whole run (bisected on http-capability-gateway). Either alone is enough to stop this workflow existing as far as Actions is concerned — the tell was the Actions API reporting name == '.github/workflows/secret-scanner.yml' instead of 'Secret Scanner', which is how GitHub registers a file it cannot parse. Verified: passes a strict YAML load that rejects duplicate keys AND rejects an empty/jobless file (a vacuous pass is not a pass). Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
2 parents 7254b67 + c2c57cd commit 852d958

5 files changed

Lines changed: 6 additions & 6 deletions

File tree

.github/workflows/boj-build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
timeout-minutes: 15
1111
steps:
1212
- name: Checkout
13-
uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
13+
uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
1414
- name: Trigger BoJ Server (Casket/ssg-mcp)
1515
run: |
1616
# Send a secure trigger to boj-server to build this repository

.github/workflows/casket-pages.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
timeout-minutes: 15
1818
steps:
1919
- name: Checkout
20-
uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v4
20+
uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v4
2121

2222
- name: Setup Pages
2323
uses: actions/configure-pages@45bfe0192ca1faeb007ade9deae92b16b8254a0d # v6.0.0

.github/workflows/codeql.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
build-mode: none
3434
steps:
3535
- name: Checkout
36-
uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
36+
uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
3737

3838
- name: Initialize CodeQL
3939
uses: github/codeql-action/init@7188fc363630916deb702c7fdcf4e481b751f97a # v3

.github/workflows/pages.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,9 @@ jobs:
1818
image: ghcr.io/stefan-hoeck/idris2-pack@sha256:f0758996a931fb35d9ecb1de273c4d59dabe2a09b433afc7e357f65a08b7e1ff
1919
steps:
2020
- name: Checkout Site
21-
uses: actions/checkout@v7
21+
uses: actions/checkout@v7.0.1
2222
- name: Checkout Ddraig SSG
23-
uses: actions/checkout@v7
23+
uses: actions/checkout@v7.0.1
2424
with:
2525
repository: hyperpolymath/ddraig-ssg
2626
path: .ddraig-ssg

.github/workflows/registry-validate.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
timeout-minutes: 15
3333
steps:
3434
- name: Checkout
35-
uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
35+
uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
3636

3737
- name: Set up Julia
3838
uses: julia-actions/setup-julia@fa02766e078afaaf09b14210362cee14137e6a32 # v3.0.2

0 commit comments

Comments
 (0)