Skip to content

Commit 3077a3e

Browse files
authored
[automation] Auto-update linters version, help and documentation (#6453)
* [automation] Auto-update linters version, help and documentation * trv * [MegaLinter] Apply linters fixes * trv * trv * yarn audit fix --------- Co-authored-by: nvuillam <[email protected]>
1 parent afa06ee commit 3077a3e

14 files changed

+180
-165
lines changed

.automation/build.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,10 @@
1111
import subprocess
1212
import sys
1313
from datetime import date, datetime
14+
from pathlib import Path
1415
from shutil import copyfile, which
1516
from typing import Any
1617
from urllib import parse as parse_urllib
17-
from pathlib import Path
1818

1919
import git
2020
import jsonschema
@@ -831,7 +831,9 @@ def generate_linter_dockerfiles():
831831
logging.info(f"Updated {linters_matrix_file}")
832832

833833
# Write MD file
834-
Path(f"{REPO_HOME}/docs/standalone-linters.md").write_text(linters_md + "\n", encoding="utf-8")
834+
Path(f"{REPO_HOME}/docs/standalone-linters.md").write_text(
835+
linters_md + "\n", encoding="utf-8"
836+
)
835837

836838

837839
# Automatically generate a test class for each linter class

.automation/generated/linter-helps.json

Lines changed: 12 additions & 11 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.automation/generated/linter-versions.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
"checkstyle": "12.1.0",
1313
"chktex": "1.7.8",
1414
"clang-format": "20.1.8",
15-
"clippy": "0.1.90",
15+
"clippy": "0.1.91",
1616
"clj-kondo": "2025.10.23",
1717
"cljstyle": "0.17.642",
1818
"coffeelint": "5.2.11",

.trivyignore

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,15 @@ CVE-2025-30204
2929
CVE-2025-47906
3030
# https://avd.aquasec.com/nvd/2025/cve-2025-47907/ , not a security issue in MegaLinter context
3131
CVE-2025-47907
32-
32+
CVE-2025-58187
33+
CVE-2025-47912
34+
CVE-2025-58183
35+
CVE-2025-58185
36+
CVE-2025-58186
37+
CVE-2025-58187
38+
CVE-2025-58188
39+
CVE-2025-61723
40+
CVE-2025-61724
3341

3442
# go-git
3543
CVE-2025-21613
@@ -144,6 +152,8 @@ CVE-2025-7783
144152
CVE-2025-8959
145153
# https://avd.aquasec.com/nvd/cve-2025-9288 : sha.js: Missing type checks leading to hash rewind and passing on crafte. Harmless in MegaLinter because Salesforce linters do not connect to Salesforce orgs
146154
CVE-2025-9288
155+
# https://avd.aquasec.com/nvd/cve-2025-64118 : node-tar has a race condition leading to uninitialized memory exposure. Not applicable in MegaLinter context
156+
CVE-2025-64118
147157
# Dockerfile
148158
DS001
149159
DS002

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -92,6 +92,7 @@ Note: Can be used with `oxsecurity/megalinter@beta` in your GitHub Action mega-l
9292
- [ruff](https://github.com/astral-sh/ruff) from 0.14.1 to **0.14.2** on 2025-10-29
9393
- [rubocop](https://rubocop.org/) from 1.81.1 to **1.81.6** on 2025-10-29
9494
- [snakemake](https://snakemake.github.io/) from 9.13.3 to **9.13.4** on 2025-10-29
95+
- [clippy](https://github.com/rust-lang/rust-clippy) from 0.1.90 to **0.1.91** on 2025-10-31
9596
<!-- linter-versions-end -->
9697

9798
## [v9.1.0] - 2025-10-07

0 commit comments

Comments
 (0)