Upgrade to CodeQL v2.24.2 and fix release-codeql.yml workflow#318
Merged
data-douser merged 6 commits intomainfrom Mar 10, 2026
Merged
Upgrade to CodeQL v2.24.2 and fix release-codeql.yml workflow#318data-douser merged 6 commits intomainfrom
v2.24.2 and fix release-codeql.yml workflow#318data-douser merged 6 commits intomainfrom
Conversation
Updates the required minimum version of "codeql/javascript-all" pack dependency to improve consistency across qlpack definitions while better reflecting the actual version of the dependency that actually gets installed for the current CodeQL CLI version.
Collaborator
Author
|
Extends #317 |
Move the inline pack publishing and bundling logic from the release-codeql workflow into dedicated scripts: - scripts/publish-packs.sh: Publishes all CodeQL packs to GHCR with pre-release detection, token validation, and dry-run support. - scripts/bundle-packs.sh: Bundles all CodeQL packs into .tar.gz archives with configurable output directory and dry-run support.
v2.24.2 while requiring the corresponding version of the codeql/javascript-all pack dependencyv2.24.2 and fix release-codeql.yml workflow
mbaluda
approved these changes
Mar 10, 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.
Summary of Changes
This pull request updates the SAP JavaScript framework CodeQL packs and their dependencies to use the latest compatible versions, and improves the release workflow to better handle prerelease versions. The main changes are version bumps for all
qlpack.ymlandcodeql-pack.lock.ymlfiles, switching workspace dependencies to use${workspace}for local development, and a workflow enhancement for publishing prerelease packs.Outline of Changes
Dependency and version updates:
Bumped the version of all SAP JavaScript framework CodeQL packs (including
cap,ui5, andxsjsvariants) from2.3.0to2.24.2, and updated their dependency oncodeql/javascript-allfrom^2.4.0to^2.6.22. Workspace dependencies are now referenced using${workspace}instead of specific versions, improving local development and testing. [1] [2] [3] [4] [5] [6] [7] [8] [9] [10] [11]Updated all
codeql-pack.lock.ymlfiles to reference the latest compatible versions of dependencies, includingcodeql/concepts,codeql/controlflow,codeql/dataflow,codeql/mad,codeql/regex,codeql/ssa,codeql/threat-models,codeql/tutorial,codeql/typetracking,codeql/util,codeql/xml, andcodeql/yaml. [1] [2]Workflow improvements:
.github/workflows/release-codeql.yml) to detect prerelease versions (those containing a hyphen) and automatically add the--allow-prereleaseflag when publishing, ensuring prerelease versions are handled correctly.