Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 8 additions & 1 deletion .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,14 @@ updates:
# SHA-form re-bump attempt bypassed versions-scoped ignores — see
# nexia-list#101/#104). Hold until upstream clears 4.38.1 or a newer
# release verifies green; revisit deliberately, not weekly.
- dependency-name: "github/codeql-action"
#
# The trailing * is load-bearing. Workflows reference the SUBPATH
# actions (github/codeql-action/init, /analyze, /upload-sarif) and
# Dependabot treats each subpath as its own dependency name -- so a
# bare "github/codeql-action" entry matches NONE of them. That is how
# #977 re-bumped 4.38.0 -> 4.38.1 on 2026-09-22 straight through this
# hold, startup-killing codeql.yml and scorecard.yml (jobs=0).
- dependency-name: "github/codeql-action*"
# github-actions major bumps are usually safe — the SHA pin is the real
# version. Standards repo is the canonical-template host so we want the
# PRs fast (daily) and grouped. If a specific action proves unstable on
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/codeql-reusable.yml
Original file line number Diff line number Diff line change
Expand Up @@ -94,12 +94,12 @@ jobs:
persist-credentials: false

- name: Initialize CodeQL
uses: github/codeql-action/init@1c5b675653bb5c22dbe9b12b556ec555138e09fd # v4.38.0 (4.38.1 blocked estate-wide; nexia-list#100)
uses: github/codeql-action/init@b96794f015dfd88f77b49b1c93e0fa7110f94c63 # v4.38.0 (4.38.1 blocked estate-wide; nexia-list#100)
with:
languages: ${{ inputs.language }}
build-mode: ${{ inputs.build-mode }}

- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@1c5b675653bb5c22dbe9b12b556ec555138e09fd # v4.38.0 (4.38.1 blocked estate-wide; nexia-list#100)
uses: github/codeql-action/analyze@b96794f015dfd88f77b49b1c93e0fa7110f94c63 # v4.38.0 (4.38.1 blocked estate-wide; nexia-list#100)
with:
category: "/language:${{ inputs.language }}"
2 changes: 1 addition & 1 deletion .github/workflows/hypatia-scan-reusable.yml
Original file line number Diff line number Diff line change
Expand Up @@ -242,7 +242,7 @@ jobs:
# This flag only tolerates a genuine upload failure (e.g. Advanced
# Security disabled on a private repo) once the job is actually running.
continue-on-error: true
uses: github/codeql-action/upload-sarif@1c5b675653bb5c22dbe9b12b556ec555138e09fd # v4.38.0 (4.38.1 blocked estate-wide; nexia-list#100)
uses: github/codeql-action/upload-sarif@b96794f015dfd88f77b49b1c93e0fa7110f94c63 # v4.38.0 (4.38.1 blocked estate-wide; nexia-list#100)
with:
sarif_file: hypatia.sarif
category: hypatia
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/scorecard-reusable.yml
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ jobs:
printf 'reconciled=false\n' >> "$GITHUB_OUTPUT"
fi
- name: Upload SARIF to code scanning
uses: github/codeql-action/upload-sarif@1c5b675653bb5c22dbe9b12b556ec555138e09fd # v3
uses: github/codeql-action/upload-sarif@b96794f015dfd88f77b49b1c93e0fa7110f94c63 # v4.38.0 (4.38.1 blocked estate-wide; nexia-list#100)
with:
sarif_file: ${{ steps.select-sarif.outputs.file }}

Expand Down Expand Up @@ -225,7 +225,7 @@ jobs:
printf 'reconciled=false\n' >> "$GITHUB_OUTPUT"
fi
- name: Upload SARIF to code scanning
uses: github/codeql-action/upload-sarif@1c5b675653bb5c22dbe9b12b556ec555138e09fd # v4.38.1
uses: github/codeql-action/upload-sarif@b96794f015dfd88f77b49b1c93e0fa7110f94c63 # v4.38.0 (4.38.1 blocked estate-wide; nexia-list#100)
with:
sarif_file: ${{ steps.select-sarif.outputs.file }}
- name: Retain scan evidence
Expand Down
Loading