Skip to content

Commit ac030dd

Browse files
jsorefaeisenberg
andauthored
Apply suggestions from code review
Co-authored-by: Andrew Eisenberg <[email protected]>
1 parent d3f9862 commit ac030dd

File tree

4 files changed

+6
-8
lines changed

4 files changed

+6
-8
lines changed

CHANGELOG.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ Note that the only difference between `v2` and `v3` of the CodeQL Action is the
66

77
## [UNRELEASED]
88

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)
1010

1111
## 3.24.0 - 02 Feb 2024
1212

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "codeql",
3-
"version": "3.25.0",
3+
"version": "3.24.1",
44
"private": true,
55
"description": "CodeQL action",
66
"scripts": {

src/status-report.ts

+2-4
Original file line numberDiff line numberDiff line change
@@ -294,12 +294,10 @@ const INCOMPATIBLE_MSG =
294294
* as failed if the status report failed. This is only expected to be used
295295
* when sending a 'starting' report.
296296
*
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:
298298
* https://github.com/github/codeql/issues/15462#issuecomment-1919186317
299299
*
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.
303301
*/
304302
export async function sendStatusReport<S extends StatusReportBase>(
305303
statusReport: S,

src/upload-lib.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,9 @@ import * as util from "./util";
1717
import { SarifFile, ConfigurationError, wrapError } from "./util";
1818

1919
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.";
2121
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.";
2323

2424
// Takes a list of paths to sarif files and combines them together,
2525
// returning the contents of the combined sarif file.

0 commit comments

Comments
 (0)