File tree Expand file tree Collapse file tree 1 file changed +1
-3
lines changed
.github/actions/update-bundle Expand file tree Collapse file tree 1 file changed +1
-3
lines changed Original file line number Diff line number Diff line change @@ -13,8 +13,6 @@ interface Defaults {
1313 priorCliVersion : string ;
1414}
1515
16- const CODEQL_BUNDLE_PREFIX = 'codeql-bundle-' ;
17-
1816function getCodeQLCliVersionForRelease ( release ) : string {
1917 // We do not currently tag CodeQL bundles based on the CLI version they contain.
2018 // Instead, we use a marker file `cli-version-<version>.txt` to record the CLI version.
@@ -37,7 +35,7 @@ function getCodeQLCliVersionForRelease(release): string {
3735
3836 async function getBundleInfoFromRelease ( release ) : Promise < BundleInfo > {
3937 return {
40- bundleVersion : release . tag_name . substring ( CODEQL_BUNDLE_PREFIX . length ) ,
38+ bundleVersion : release . tag_name ,
4139 cliVersion : getCodeQLCliVersionForRelease ( release )
4240 } ;
4341 }
You can’t perform that action at this time.
0 commit comments