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 {
13
13
priorCliVersion : string ;
14
14
}
15
15
16
- const CODEQL_BUNDLE_PREFIX = 'codeql-bundle-' ;
17
-
18
16
function getCodeQLCliVersionForRelease ( release ) : string {
19
17
// We do not currently tag CodeQL bundles based on the CLI version they contain.
20
18
// Instead, we use a marker file `cli-version-<version>.txt` to record the CLI version.
@@ -37,7 +35,7 @@ function getCodeQLCliVersionForRelease(release): string {
37
35
38
36
async function getBundleInfoFromRelease ( release ) : Promise < BundleInfo > {
39
37
return {
40
- bundleVersion : release . tag_name . substring ( CODEQL_BUNDLE_PREFIX . length ) ,
38
+ bundleVersion : release . tag_name ,
41
39
cliVersion : getCodeQLCliVersionForRelease ( release )
42
40
} ;
43
41
}
You can’t perform that action at this time.
0 commit comments