Open
Conversation
Co-authored-by: chrismaz11 <24700273+chrismaz11@users.noreply.github.com>
Copilot
AI
changed the title
[WIP] Audit and fix GitHub Actions workflows
Audit and fix GitHub Actions workflows
Mar 18, 2026
chrismaz11
approved these changes
Mar 18, 2026
|
You are seeing this message because GitHub Code Scanning has recently been set up for this repository, or this pull request contains the workflow file for the Code Scanning tool. What Enabling Code Scanning Means:
For more information about GitHub Code Scanning, check out the documentation. |
There was a problem hiding this comment.
Pull request overview
This PR audits and simplifies GitHub Actions workflows by removing redundant matrices and addressing a persistent Scorecards publishing failure while keeping Code Scanning (SARIF) uploads intact.
Changes:
- Simplify CI by removing the Node version matrix and pinning the workflow to Node 20.
- Remove a single-item language matrix from the CodeQL workflow and inline the language value.
- Disable Scorecards “publish_results” to avoid the recurring publish/verification failure while still uploading SARIF to code scanning.
Reviewed changes
Copilot reviewed 3 out of 3 changed files in this pull request and generated no comments.
| File | Description |
|---|---|
| .github/workflows/ci.yml | Removes Node matrix and runs validation on Node 20 only. |
| .github/workflows/codeql.yml | Deletes single-item matrix and hardcodes javascript-typescript in CodeQL init. |
| .github/workflows/scorecards.yml | Sets publish_results: false while keeping SARIF upload step. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
chrismaz11
approved these changes
Mar 18, 2026
chrismaz11
approved these changes
Mar 18, 2026
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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Five workflows existed; three had real problems. Removes matrix noise, eliminates a single-item strategy matrix, and fixes a recurring Scorecards failure that was red on every
mainpush.Changes
ci.yml— Drop Node 20/22 matrix.engines.node >= 20andaction.ymlboth pinnode20; a second version adds runner cost with no signal.codeql.yml— Remove single-itemlanguagematrix. Replaced${{ matrix.language }}with the literaljavascript-typescriptdirectly.scorecards.yml— Flippublish_results: true→false. The Scorecards webapp was returning HTTP 400 ("workflow verification failed") on every push tomain. Analysis and SARIF upload to code scanning still run.Kept unchanged
dependency-review.yml— Clean and correct as-is.action-bundle-check.yml— Valid: guards that the committedapps/action/dist/index.jsbundle stays in sync with source.💡 You can make Copilot smarter by setting up custom instructions, customizing its development environment and configuring Model Context Protocol (MCP) servers. Learn more Copilot coding agent tips in the docs.