Draft
Fix reusable CI workflow container schema for GitHub Actions linting#525
Conversation
Copilot
AI
changed the title
[WIP] Fix failing GitHub Actions job
Fix reusable CI workflow container schema for GitHub Actions linting
Sep 4, 2026
…ctory with 2 updates Bumps the github-actions-dependencies group with 2 updates in the / directory: [github/codeql-action/init](https://github.com/github/codeql-action) and [github/codeql-action/analyze](https://github.com/github/codeql-action). Updates `github/codeql-action/init` from 4.37.8 to 4.37.9 - [Release notes](https://github.com/github/codeql-action/releases) - [Changelog](https://github.com/github/codeql-action/blob/main/CHANGELOG.md) - [Commits](github/codeql-action@db488dd...cdf488f) Updates `github/codeql-action/analyze` from 4.37.8 to 4.37.9 - [Release notes](https://github.com/github/codeql-action/releases) - [Changelog](https://github.com/github/codeql-action/blob/main/CHANGELOG.md) - [Commits](github/codeql-action@db488dd...cdf488f) --- updated-dependencies: - dependency-name: github/codeql-action/init dependency-version: 4.37.9 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: github-actions-dependencies - dependency-name: github/codeql-action/analyze dependency-version: 4.37.9 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: github-actions-dependencies ... Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: neilime <314088+neilime@users.noreply.github.com>
neilime
force-pushed
the
copilot/fix-github-actions-job
branch
from
September 4, 2026 15:50
41a0fe2 to
64ea440
Compare
Contributor
Super-linter summary
All files and directories linted successfully For more information, see the GitHub Actions workflow run Powered by Super-linter |
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## dependabot/github_actions/github-actions-dependencies-f1ba23a83b #525 +/- ##
====================================================================================================
Coverage ? 100.00%
====================================================================================================
Files ? 1
Lines ? 3
Branches ? 0
====================================================================================================
Hits ? 3
Misses ? 0
Partials ? 0 ☔ View full report in Codecov by Harness. 🚀 New features to boost your workflow:
|
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.
The failing Actions job was caused by
.github/workflows/continuous-integration.ymlusing dynamic job-level container fields in a shape thatzizmorno longer accepts. The reusable CI workflow now emits schema-compatible container configuration without changing the caller-facing container input contract.Container config normalization
portsandvolumesinto Docker flags appended tocontainer.optionsduring thepreparejob.Schema-compatible job container definition
container.portsandcontainer.volumesfrom downstream jobs.container.credentials: ${{ fromJSON(...) }}with a normal credentials mapping so workflow schema validation succeeds.Targeted workflow audit annotations
zizmorsuppressions only where the reusable workflow intentionally accepts caller-provided images or forwards secrets/tokens.Example of the effective change:
And in the parser: