File tree 4 files changed +6
-8
lines changed
4 files changed +6
-8
lines changed Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ Note that the only difference between `v2` and `v3` of the CodeQL Action is the
6
6
7
7
## [ UNRELEASED]
8
8
9
- - The upload-sarif action should not fail if it can't write to the telemetry api endpoint [ #2121 ] ( https://github.com/github/codeql-action/pull/2121 )
9
+ - The CodeQL action no longer fails if it can't write to the telemetry api endpoint. [ #2121 ] ( https://github.com/github/codeql-action/pull/2121 )
10
10
11
11
## 3.24.0 - 02 Feb 2024
12
12
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " codeql" ,
3
- "version" : " 3.25.0 " ,
3
+ "version" : " 3.24.1 " ,
4
4
"private" : true ,
5
5
"description" : " CodeQL action" ,
6
6
"scripts" : {
Original file line number Diff line number Diff line change @@ -294,12 +294,10 @@ const INCOMPATIBLE_MSG =
294
294
* as failed if the status report failed. This is only expected to be used
295
295
* when sending a 'starting' report.
296
296
*
297
- * This API it calls is private and it is not critical that it succeed :
297
+ * The `/code-scanning/analysis/status` endpoint is internal and not critical that it succeeds :
298
298
* https://github.com/github/codeql/issues/15462#issuecomment-1919186317
299
299
*
300
- * Do not worry about whether a report is/isn't submitted.
301
- * Just go about your business.
302
- * The side effects of this call are not relevant to your program.
300
+ * Failures while calling this endpoint are logged as warings.
303
301
*/
304
302
export async function sendStatusReport < S extends StatusReportBase > (
305
303
statusReport : S ,
Original file line number Diff line number Diff line change @@ -17,9 +17,9 @@ import * as util from "./util";
17
17
import { SarifFile , ConfigurationError , wrapError } from "./util" ;
18
18
19
19
const GENERIC_403_MSG =
20
- "The repo on which this action is running is not opted-in to CodeQL code scanning." ;
20
+ "The repo on which this action is running has not opted-in to CodeQL code scanning." ;
21
21
const GENERIC_404_MSG =
22
- "Not authorized to use the CodeQL code scanning feature on this repo ." ;
22
+ "The CodeQL code scanning feature is forbidden on this repository ." ;
23
23
24
24
// Takes a list of paths to sarif files and combines them together,
25
25
// returning the contents of the combined sarif file.
You can’t perform that action at this time.
0 commit comments