Skip to content

Commit f0f3afe

Browse files
angelapwenmarcogariogithub-actions[bot]henrymerceraibaars
authored
Merge main into releases/v3 (#2437)
* Consider registries_credentials as input * Clean-up logging * More debugging of credentials * Support URL * Validate credentials input * fixes * Try upload teh proxy logs * Update changelog and version after v3.26.3 * Update checked-in dependencies * Stop checking disk usage for MacOS ARM with SIP disabled (#2434) * Stop checking disk usage for MacOS ARM with SIP disabled On MacOS ARM machines where SIP is disabled, after the build tracer is initialized in the `init` Action, we receive warnings when we run send status reports due to the `df` binary. This change will make it so that we no longer run `df` for those machines. * Add deprecation message to `add-snippets` input. * Update changelog with deprecation. * Add link to PR deprecating `add-snippets` to CHANGELOG.md Co-authored-by: Andrew Eisenberg <[email protected]> * Address incorrect changelog location * Update changelog for v3.26.4 --------- Co-authored-by: Marco Gario <[email protected]> Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> Co-authored-by: Henry Mercer <[email protected]> Co-authored-by: Arthur Baars <[email protected]> Co-authored-by: Angela P Wen <[email protected]> Co-authored-by: Remco Vermeulen <[email protected]> Co-authored-by: Remco Vermeulen <[email protected]> Co-authored-by: Andrew Eisenberg <[email protected]>
2 parents 883d858 + e354359 commit f0f3afe

33 files changed

+352
-168
lines changed

CHANGELOG.md

+5
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,11 @@ See the [releases page](https://github.com/github/codeql-action/releases) for th
44

55
Note that the only difference between `v2` and `v3` of the CodeQL Action is the node version they support, with `v3` running on node 20 while we continue to release `v2` to support running on node 16. For example `3.22.11` was the first `v3` release and is functionally identical to `2.22.11`. This approach ensures an easy way to track exactly which features are included in different versions, indicated by the minor and patch version numbers.
66

7+
## 3.26.4 - 21 Aug 2024
8+
9+
- _Deprecation:_ The `add-snippets` input on the `analyze` Action is deprecated and will be removed in the first release in August 2025. [#2436](https://github.com/github/codeql-action/pull/2436)
10+
- Fix an issue where the disk usage system call used for telemetry would fail on MacOS ARM machines with System Integrity Protection disabled, and then surface a warning. The system call is now disabled for these machines. [#2434](https://github.com/github/codeql-action/pull/2434)
11+
712
## 3.26.3 - 19 Aug 2024
813

914
- Fix an issue where the CodeQL Action could not write diagnostic messages on Windows. This issue did not impact analysis quality. [#2430](https://github.com/github/codeql-action/pull/2430)

analyze/action.yml

+5
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,11 @@ inputs:
3434
description: Specify whether or not to add code snippets to the output sarif file.
3535
required: false
3636
default: "false"
37+
deprecationMessage: >-
38+
The input "add-snippets" is deprecated and will be removed on the first release in August 2025.
39+
When this input is set to true it is expected to add code snippets with an alert to the SARIF file.
40+
However, since Code Scanning ignores code snippets provided as part of a SARIF file this is currently
41+
a no operation. No alternative is available.
3742
skip-queries:
3843
description: If this option is set, the CodeQL database will be built but no queries will be run on it. Thus, no results will be produced.
3944
required: false

lib/analyze-action.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lib/analyze-action.js.map

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lib/init-action-post.js

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lib/init-action-post.js.map

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lib/init-action.js

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)