Skip to content

Bump oxsecurity/megalinter from 9.5.0 to 10.0.0 - #157

Open
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/github_actions/oxsecurity/megalinter-10.0.0
Open

Bump oxsecurity/megalinter from 9.5.0 to 10.0.0#157
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/github_actions/oxsecurity/megalinter-10.0.0

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Aug 11, 2026

Copy link
Copy Markdown
Contributor

Bumps oxsecurity/megalinter from 9.5.0 to 10.0.0.

Release notes

Sourced from oxsecurity/megalinter's releases.

v10.0.0

What's Changed

  • Breaking changes

    • Removed 14 deprecated or long-disabled linters, and the API, MAKEFILE and PUPPET descriptors, which had no other linter left. MegaLinter does not provide Makefile and Puppet linting anymore. See the new Removed linters page for the full list and suggested replacements. (#8606)
    • REPOSITORY_GITLEAKS has been removed: migrate to REPOSITORY_BETTERLEAKS, which reads your existing .gitleaks.toml and .gitleaksignore files unchanged. (#8606)
    • Existing .mega-linter.yml files keep working: configuration variables of removed linters are simply ignored (a single notice lists any found in your configuration) and remain valid in the JSON schema. (#8606)
    • API Reporter payload v2 replaces the v1 payload: metric series are renamed (linter_run_* becomes megalinter_linter_run_*, plus new run-level megalinter_run_* series), and the old docs/grafana dashboards are superseded. Re-provision the new dashboards with npx mega-linter-runner --upload-dashboards grafana — see the migration notes. Legacy NOTIF_API_* variables remain supported as aliases. (#8661)
    • Linters now time out after 5 minutes by default (LINTER_TIMEOUT_SECONDS: 300): a linter exceeding it is killed and reported as an error (exit code 124) instead of running (or hanging) unbounded. If some of your linters legitimately run longer, raise the limit globally with LINTER_TIMEOUT_SECONDS, per linter with <LINTER_KEY>_TIMEOUT_SECONDS, or restore the previous unbounded behavior with value 0. (#8665)
  • Core

    • Coding agents integration: MegaLinter can now be driven by Claude Code, Cursor CLI, GitHub Copilot CLI, Codex and many other coding agents — see the new Coding Agents documentation page (#8614)
      • Install the MegaLinter agent skills with npx skills add oxsecurity/megalinter
      • Then ask your agent to set up MegaLinter (megalinter-setup), watch CI or local runs (megalinter-check) or fix lint errors (megalinter-fix)
      • Before the first local run, the skills now make sure the user is aware that MegaLinter is Docker-based and needs a good computer configuration and internet connection (the image download can weigh several GB), and suggest watching CI results instead when that is a problem
      • Local runs launched by the skills now cap PARALLEL_PROCESS_NUMBER to 4 on local computers (CI runs keep one parallel linter process per CPU core), so linting does not saturate the machine
      • Local runs launched by the skills now always activate the JSON reporter (not generated by default) to read results reliably, and fall back to the report folder configuration then the console output instead of waiting for report files that a repository configuration may have disabled
    • Excluded directories are now forwarded to project-mode linters, massively speeding up local runs, fixes #8645
      • Linters that scan the whole workspace by themselves (REPOSITORY_TRIVY, REPOSITORY_CHECKOV, REPOSITORY_GRYPE, REPOSITORY_TRUFFLEHOG, REPOSITORY_SEMGREP and 50+ others) used to crawl everything, including build caches and node_modules: a seconds-long CI lint could take hours on a local checkout
      • MegaLinter now automatically passes the excluded directories (defaults, EXCLUDED_DIRECTORIES, ADDITIONAL_EXCLUDED_DIRECTORIES, and directories detected in FILTER_REGEX_EXCLUDE) to each of these linters, through its native exclusion flags or a generated ignore/config file
      • Every forwarded exclusion is logged in the linter's console section, and the ">300 gitignored files" performance warning now names the heaviest directories it found
      • Opt out globally with FORWARD_EXCLUDED_DIRECTORIES: false, or per linter with <LINTER_KEY>_FORWARD_EXCLUDED_DIRECTORIES: false
    • Default excluded directories now also include common build/cache folders: .wireit, .turbo, .nx, .yarn/cache, .pnpm-store, .parcel-cache, .angular, and the Salesforce CLI .sf / .sfdx state folders (#8646)
    • New per-linter timeout: a linter still running after 5 minutes (LINTER_TIMEOUT_SECONDS: 300 by default) is killed along with all its child processes and reported as an error (exit code 124) with an actionable message, while the other linters keep running. Raise the limit globally with LINTER_TIMEOUT_SECONDS, per linter with <LINTER_KEY>_TIMEOUT_SECONDS, or disable it with value 0 (#8665)
    • New prerun analysis mode (mega-linter-runner --prerun, or MEGALINTER_PRERUN=true environment variable): MegaLinter identifies active linters and collects files, then stops before running any linter and suggests configuration improvements, in the console and in megalinter-reports/prerun-report.json (#8653)
      • Suggested exclusions: top-level directories containing only gitignored files (safe: linting scope is unchanged, and project-mode linters stop scanning them), and well-known generated/vendored folder names (site, dist, vendor...) still containing lintable files (to confirm by the user)
      • A lighter matching flavor is also suggested when available
      • The megalinter-check agent skill uses it on the first local run to tune .mega-linter.yml with the user before the real lint
      • Fixed a performance issue where detecting .gitignored files enumerated every individual file inside large ignored folders (node_modules, build output...) instead of stopping at the folder boundary, which could make the file collection step (including prerun) take several minutes on big repositories
    • Much lighter Docker images: the main image download shrinks by 9%, flavors by 9% to 22%, and standalone megalinter-only-* images are 35% to 65% smaller (#8621)
      • If your PRE_COMMANDS compile native code: the compilation toolchain is no longer shipped in the images, install it back with apk add --no-cache gcc make musl-dev

      • Main and flavor images, compressed download size on ghcr.io, linux/amd64 (before = v9.6.0, so deltas also include the linters removed in this version):

        Image Before After Delta
        megalinter (main) 4.55 GB 4.13 GB -9%
        megalinter-c_cpp 1.61 GB 1.35 GB -16%
        megalinter-ci_light 724 MB 657 MB -9%
        megalinter-cupcake 2.52 GB 2.24 GB -11%
        megalinter-documentation 1.47 GB 1.21 GB -18%
        megalinter-dotnet 2.23 GB 1.86 GB -17%
        megalinter-dotnetweb 2.25 GB 1.88 GB -17%
        megalinter-formatters 936 MB 849 MB -9%
        megalinter-go 1.55 GB 1.35 GB -13%
        megalinter-java 1.59 GB 1.32 GB -17%
        megalinter-javascript 1.49 GB 1.23 GB -18%
        megalinter-php 1.51 GB 1.26 GB -17%
        megalinter-python 1.61 GB 1.26 GB -22%
        megalinter-ruby 1.49 GB 1.22 GB -18%
        megalinter-rust 1.99 GB 1.80 GB -10%

... (truncated)

Changelog

Sourced from oxsecurity/megalinter's changelog.

[v10.0.0] - 2026-08-08

  • Breaking changes

    • Removed 14 deprecated or long-disabled linters, and the API, MAKEFILE and PUPPET descriptors, which had no other linter left. MegaLinter does not provide Makefile and Puppet linting anymore. See the new Removed linters page for the full list and suggested replacements. (#8606)
    • REPOSITORY_GITLEAKS has been removed: migrate to REPOSITORY_BETTERLEAKS, which reads your existing .gitleaks.toml and .gitleaksignore files unchanged. (#8606)
    • Existing .mega-linter.yml files keep working: configuration variables of removed linters are simply ignored (a single notice lists any found in your configuration) and remain valid in the JSON schema. (#8606)
    • API Reporter payload v2 replaces the v1 payload: metric series are renamed (linter_run_* becomes megalinter_linter_run_*, plus new run-level megalinter_run_* series), and the old docs/grafana dashboards are superseded. Re-provision the new dashboards with npx mega-linter-runner --upload-dashboards grafana — see the migration notes. Legacy NOTIF_API_* variables remain supported as aliases. (#8661)
    • Linters now time out after 5 minutes by default (LINTER_TIMEOUT_SECONDS: 300): a linter exceeding it is killed and reported as an error (exit code 124) instead of running (or hanging) unbounded. If some of your linters legitimately run longer, raise the limit globally with LINTER_TIMEOUT_SECONDS, per linter with <LINTER_KEY>_TIMEOUT_SECONDS, or restore the previous unbounded behavior with value 0. (#8665)
  • Core

    • Coding agents integration: MegaLinter can now be driven by Claude Code, Cursor CLI, GitHub Copilot CLI, Codex and many other coding agents — see the new Coding Agents documentation page (#8614)
      • Install the MegaLinter agent skills with npx skills add oxsecurity/megalinter
      • Then ask your agent to set up MegaLinter (megalinter-setup), watch CI or local runs (megalinter-check) or fix lint errors (megalinter-fix)
      • Before the first local run, the skills now make sure the user is aware that MegaLinter is Docker-based and needs a good computer configuration and internet connection (the image download can weigh several GB), and suggest watching CI results instead when that is a problem
      • Local runs launched by the skills now cap PARALLEL_PROCESS_NUMBER to 4 on local computers (CI runs keep one parallel linter process per CPU core), so linting does not saturate the machine
      • Local runs launched by the skills now always activate the JSON reporter (not generated by default) to read results reliably, and fall back to the report folder configuration then the console output instead of waiting for report files that a repository configuration may have disabled
    • Excluded directories are now forwarded to project-mode linters, massively speeding up local runs, fixes #8645
      • Linters that scan the whole workspace by themselves (REPOSITORY_TRIVY, REPOSITORY_CHECKOV, REPOSITORY_GRYPE, REPOSITORY_TRUFFLEHOG, REPOSITORY_SEMGREP and 50+ others) used to crawl everything, including build caches and node_modules: a seconds-long CI lint could take hours on a local checkout
      • MegaLinter now automatically passes the excluded directories (defaults, EXCLUDED_DIRECTORIES, ADDITIONAL_EXCLUDED_DIRECTORIES, and directories detected in FILTER_REGEX_EXCLUDE) to each of these linters, through its native exclusion flags or a generated ignore/config file
      • Every forwarded exclusion is logged in the linter's console section, and the ">300 gitignored files" performance warning now names the heaviest directories it found
      • Opt out globally with FORWARD_EXCLUDED_DIRECTORIES: false, or per linter with <LINTER_KEY>_FORWARD_EXCLUDED_DIRECTORIES: false
    • Default excluded directories now also include common build/cache folders: .wireit, .turbo, .nx, .yarn/cache, .pnpm-store, .parcel-cache, .angular, and the Salesforce CLI .sf / .sfdx state folders (#8646)
    • New per-linter timeout: a linter still running after 5 minutes (LINTER_TIMEOUT_SECONDS: 300 by default) is killed along with all its child processes and reported as an error (exit code 124) with an actionable message, while the other linters keep running. Raise the limit globally with LINTER_TIMEOUT_SECONDS, per linter with <LINTER_KEY>_TIMEOUT_SECONDS, or disable it with value 0 (#8665)
    • New prerun analysis mode (mega-linter-runner --prerun, or MEGALINTER_PRERUN=true environment variable): MegaLinter identifies active linters and collects files, then stops before running any linter and suggests configuration improvements, in the console and in megalinter-reports/prerun-report.json (#8653)
      • Suggested exclusions: top-level directories containing only gitignored files (safe: linting scope is unchanged, and project-mode linters stop scanning them), and well-known generated/vendored folder names (site, dist, vendor...) still containing lintable files (to confirm by the user)
      • A lighter matching flavor is also suggested when available
      • The megalinter-check agent skill uses it on the first local run to tune .mega-linter.yml with the user before the real lint
      • Fixed a performance issue where detecting .gitignored files enumerated every individual file inside large ignored folders (node_modules, build output...) instead of stopping at the folder boundary, which could make the file collection step (including prerun) take several minutes on big repositories
    • Much lighter Docker images: the main image download shrinks by 9%, flavors by 9% to 22%, and standalone megalinter-only-* images are 35% to 65% smaller (#8621)
      • If your PRE_COMMANDS compile native code: the compilation toolchain is no longer shipped in the images, install it back with apk add --no-cache gcc make musl-dev

      • Main and flavor images, compressed download size on ghcr.io, linux/amd64 (before = v9.6.0, so deltas also include the linters removed in this version):

        Image Before After Delta
        megalinter (main) 4.55 GB 4.13 GB -9%
        megalinter-c_cpp 1.61 GB 1.35 GB -16%
        megalinter-ci_light 724 MB 657 MB -9%
        megalinter-cupcake 2.52 GB 2.24 GB -11%
        megalinter-documentation 1.47 GB 1.21 GB -18%
        megalinter-dotnet 2.23 GB 1.86 GB -17%
        megalinter-dotnetweb 2.25 GB 1.88 GB -17%
        megalinter-formatters 936 MB 849 MB -9%
        megalinter-go 1.55 GB 1.35 GB -13%
        megalinter-java 1.59 GB 1.32 GB -17%
        megalinter-javascript 1.49 GB 1.23 GB -18%
        megalinter-php 1.51 GB 1.26 GB -17%
        megalinter-python 1.61 GB 1.26 GB -22%
        megalinter-ruby 1.49 GB 1.22 GB -18%
        megalinter-rust 1.99 GB 1.80 GB -10%
        megalinter-salesforce 2.09 GB 1.87 GB -10%

... (truncated)

Commits
  • 15e5b45 Release MegaLinter v10.0.0
  • 861855a megalinter-setup skill: enforce ghcr.io image references in upgrade mode (#8694)
  • 572dc81 [automation] Auto-update linters version, help and documentation (#8695)
  • 2f62977 Refresh OX Security PR comment banner and home page banner (#8692)
  • 3b8c632 chore(deps): update dependency mongodb/kingfisher to v1.112.0 (#8691)
  • 7efac01 chore(deps): update mstruebing/editorconfig-checker docker tag to v3.10.0 (#8...
  • 8cea326 Make custom flavor generator output pass MegaLinter (#8686)
  • a057dcb [automation] Auto-update linters version, help and documentation (#8690)
  • 6dece72 chore(deps): update dependency virtualenv to v21.7.2 (#8683)
  • 08a6d16 docs: highlight impactful contributors in the Special thanks section (#8688)
  • Additional commits viewable in compare view

Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

Bumps [oxsecurity/megalinter](https://github.com/oxsecurity/megalinter) from 9.5.0 to 10.0.0.
- [Release notes](https://github.com/oxsecurity/megalinter/releases)
- [Changelog](https://github.com/oxsecurity/megalinter/blob/main/CHANGELOG.md)
- [Commits](oxsecurity/megalinter@v9.5.0...v10.0.0)

---
updated-dependencies:
- dependency-name: oxsecurity/megalinter
  dependency-version: 10.0.0
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot added dependencies Pull requests that update a dependency file github_actions Pull requests that update GitHub Actions code labels Aug 11, 2026
@github-actions

Copy link
Copy Markdown

MegaLinter analysis: Error

Descriptor Linter Files Fixed Errors Max errors Warnings Elapsed time
✅ ACTION actionlint 3 0 0 0.04s
❌ COPYPASTE jscpd yes 5 no 0.88s
✅ CSS stylelint 1 0 0 0.98s
✅ HTML htmlhint 4 0 0 0.24s
✅ JAVASCRIPT standard 1 0 0 1.55s
✅ JSON jsonlint 1 0 0 0.11s
✅ JSON v8r 1 0 0 2.3s
⚠️ MARKDOWN markdownlint 18 11 0 1.22s
✅ MARKDOWN markdown-table-formatter 18 0 0 0.29s
✅ REPOSITORY checkov yes no no 22.14s
❌ REPOSITORY devskim yes 1 no 2.15s
✅ REPOSITORY dustilock yes no no 0.02s
✅ REPOSITORY git_diff yes no no 0.07s
❌ REPOSITORY grype yes 137 no 62.65s
❌ REPOSITORY secretlint yes 1 no 2.15s
✅ REPOSITORY syft yes no no 4.17s
❌ REPOSITORY trivy yes 1 no 13.62s
✅ REPOSITORY trivy-sbom yes no no 0.98s
✅ REPOSITORY trufflehog yes no no 4.89s
❌ SPELL lychee 38 14 0 4.81s
✅ YAML v8r 15 0 0 7.28s
❌ YAML yamllint 15 2 0 0.88s

Detailed Issues

❌ REPOSITORY / devskim - 1 error
{"$schema":"https://schemastore.azurewebsites.net/schemas/json/sarif-2.1.0-rtm.6.json","version":"2.1.0","runs":[{"tool":{"driver":{"name":"devskim","fullName":"Microsoft DevSkim Command Line Interface","version":"1.0.70+d69541fde7","informationUri":"https://github.com/microsoft/DevSkim/","rules":[{"id":"DS176209","name":"SuspiciousComment","fullDescription":{"text":"Suspicious comment: A \"TODO\" or similar was left in source code, possibly indicating incomplete functionality"},"help":{"text":"A \"TODO\" or similar was left in source code, possibly indicating incomplete functionality","markdown":"Visit [https://github.com/Microsoft/DevSkim/blob/main/guidance/DS176209.md](https://github.com/Microsoft/DevSkim/blob/main/guidance/DS176209.md) for additional guidance on this issue."},"shortDescription":{"text":"A \"TODO\" or similar was left in source code, possibly indicating incomplete functionality"},"defaultConfiguration":{"level":"note"},"helpUri":"https://github.com/Microsoft/DevSkim/blob/main/guidance/DS176209.md","properties":{"precision":"high","problem.severity":"recommendation","DevSkimSeverity":"ManualReview","DevSkimConfidence":"High"}},{"id":"DS162092","name":"DoNotLeaveDebugCodeInProduction","fullDescription":{"text":"Do not leave debug code in production: Accessing localhost could indicate debug code, or could hinder scaling."},"help":{"text":"Accessing localhost could indicate debug code, or could hinder scaling.","markdown":"Visit [https://github.com/Microsoft/DevSkim/blob/main/guidance/DS162092.md](https://github.com/Microsoft/DevSkim/blob/main/guidance/DS162092.md) for additional guidance on this issue."},"shortDescription":{"text":"Accessing localhost could indicate debug code, or could hinder scaling."},"defaultConfiguration":{"level":"note"},"helpUri":"https://github.com/Microsoft/DevSkim/blob/main/guidance/DS162092.md","properties":{"precision":"high","problem.severity":"recommendation","DevSkimSeverity":"ManualReview","DevSkimConfidence":"High"}}]}},"versionControlProvenance":[{"repositoryUri":"https://github.com/HealthDataInsight/structured_store","revisionId":"027a07d4868fe4c804d70f12cee5a39c3cf13f52","branch":"(no branch)"}],"results":[{"ruleId":"DS176209","level":"note","message":{"text":"Suspicious comment"},"locations":[{"physicalLocation":{"artifactLocation":{"uri":"lib/structured_store/schema_inspector.rb"},"region":{"startLine":49,"startColumn":12,"endLine":49,"endColumn":16,"charOffset":1346,"charLength":4,"snippet":{"text":"TODO","rendered":{"text":"TODO","markdown":"`TODO`"}},"sourceLanguage":"ruby"}}}],"properties":{"tags":["Hygiene.Comment.Suspicious"],"DevSkimSeverity":"ManualReview","DevSkimConfidence":"High"}},{"ruleId":"DS162092","level":"note","message":{"text":"Do not leave debug code in production"},"locations":[{"physicalLocation":{"artifactLocation":{"uri":".github/workflows/ci.yml"},"region":{"startLine":51,"startColumn":47,"endLine":51,"endColumn":56,"charOffset":1077,"charLength":9,"snippet":{"text":"localhost","rendered":{"text":"localhost","markdown":"`localhost`"}},"sourceLanguage":"yaml"}}}],"properties":{"tags":["Hygiene.Network.AccessingLocalhost"],"DevSkimSeverity":"ManualReview","DevSkimConfidence":"High"}},{"ruleId":"DS162092","level":"note","message":{"text":"Do not leave debug code in production"},"locations":[{"physicalLocation":{"artifactLocation":{"uri":"test/dummy/config/database.yml"},"region":{"startLine":69,"startColumn":8,"endLine":69,"endColumn":17,"charOffset":2208,"charLength":9,"snippet":{"text":"localhost","rendered":{"text":"localhost","markdown":"`localhost`"}},"sourceLanguage":"yaml"}}}],"properties":{"tags":["Hygiene.Network.AccessingLocalhost"],"DevSkimSeverity":"ManualReview","DevSkimConfidence":"High"}},{"ruleId":"DS162092","level":"note","message":{"text":"Do not leave debug code in production"},"locations":[{"physicalLocation":{"artifactLocation":{"uri":"test/dummy/config/database.yml"},"region":{"startLine":28,"startColumn":8,"endLine":28,"endColumn":17,"charOffset":798,"charLength":9,"snippet":{"text":"localhost","rendered":{"text":"localhost","markdown":"`localhost`"}},"sourceLanguage":"yaml"}}}],"properties":{"tags":["Hygiene.Network.AccessingLocalhost"],"DevSkimSeverity":"ManualReview","DevSkimConfidence":"High"}}],"columnKind":"utf16CodeUnits"}]}
❌ REPOSITORY / grype - 137 errors
.10-arm-linux-gnu       1.19.4    gem   GHSA-5v8h-3h3q-446p  Low       N/A          N/A    
nokogiri              1.18.10-arm-linux-gnu       1.19.4    gem   GHSA-8678-w3jw-xfc2  Low       N/A          N/A    
nokogiri              1.18.10-arm-linux-gnu       1.19.4    gem   GHSA-9cv2-cfxc-v4v2  Low       N/A          N/A    
nokogiri              1.18.10-arm-linux-gnu       1.19.4    gem   GHSA-p67v-3w7g-wjg7  Low       N/A          N/A    
nokogiri              1.18.10-arm-linux-gnu       1.19.4    gem   GHSA-phwj-rprq-35pp  Low       N/A          N/A    
nokogiri              1.18.10-arm-linux-gnu       1.19.4    gem   GHSA-wfpw-mmfh-qq69  Low       N/A          N/A    
nokogiri              1.18.10-arm-linux-gnu       1.19.4    gem   GHSA-wjv4-x9w8-wm3h  Low       N/A          N/A    
nokogiri              1.18.10-arm-linux-musl      1.19.4    gem   GHSA-5v8h-3h3q-446p  Low       N/A          N/A    
nokogiri              1.18.10-arm-linux-musl      1.19.4    gem   GHSA-8678-w3jw-xfc2  Low       N/A          N/A    
nokogiri              1.18.10-arm-linux-musl      1.19.4    gem   GHSA-9cv2-cfxc-v4v2  Low       N/A          N/A    
nokogiri              1.18.10-arm-linux-musl      1.19.4    gem   GHSA-p67v-3w7g-wjg7  Low       N/A          N/A    
nokogiri              1.18.10-arm-linux-musl      1.19.4    gem   GHSA-phwj-rprq-35pp  Low       N/A          N/A    
nokogiri              1.18.10-arm-linux-musl      1.19.4    gem   GHSA-wfpw-mmfh-qq69  Low       N/A          N/A    
nokogiri              1.18.10-arm-linux-musl      1.19.4    gem   GHSA-wjv4-x9w8-wm3h  Low       N/A          N/A    
nokogiri              1.18.10-arm64-darwin        1.19.4    gem   GHSA-5v8h-3h3q-446p  Low       N/A          N/A    
nokogiri              1.18.10-arm64-darwin        1.19.4    gem   GHSA-8678-w3jw-xfc2  Low       N/A          N/A    
nokogiri              1.18.10-arm64-darwin        1.19.4    gem   GHSA-9cv2-cfxc-v4v2  Low       N/A          N/A    
nokogiri              1.18.10-arm64-darwin        1.19.4    gem   GHSA-p67v-3w7g-wjg7  Low       N/A          N/A    
nokogiri              1.18.10-arm64-darwin        1.19.4    gem   GHSA-phwj-rprq-35pp  Low       N/A          N/A    
nokogiri              1.18.10-arm64-darwin        1.19.4    gem   GHSA-wfpw-mmfh-qq69  Low       N/A          N/A    
nokogiri              1.18.10-arm64-darwin        1.19.4    gem   GHSA-wjv4-x9w8-wm3h  Low       N/A          N/A    
nokogiri              1.18.10-x86_64-darwin       1.19.4    gem   GHSA-5v8h-3h3q-446p  Low       N/A          N/A    
nokogiri              1.18.10-x86_64-darwin       1.19.4    gem   GHSA-8678-w3jw-xfc2  Low       N/A          N/A    
nokogiri              1.18.10-x86_64-darwin       1.19.4    gem   GHSA-9cv2-cfxc-v4v2  Low       N/A          N/A    
nokogiri              1.18.10-x86_64-darwin       1.19.4    gem   GHSA-p67v-3w7g-wjg7  Low       N/A          N/A    
nokogiri              1.18.10-x86_64-darwin       1.19.4    gem   GHSA-phwj-rprq-35pp  Low       N/A          N/A    
nokogiri              1.18.10-x86_64-darwin       1.19.4    gem   GHSA-wfpw-mmfh-qq69  Low       N/A          N/A    
nokogiri              1.18.10-x86_64-darwin       1.19.4    gem   GHSA-wjv4-x9w8-wm3h  Low       N/A          N/A    
nokogiri              1.18.10-x86_64-linux-gnu    1.19.4    gem   GHSA-5v8h-3h3q-446p  Low       N/A          N/A    
nokogiri              1.18.10-x86_64-linux-gnu    1.19.4    gem   GHSA-8678-w3jw-xfc2  Low       N/A          N/A    
nokogiri              1.18.10-x86_64-linux-gnu    1.19.4    gem   GHSA-9cv2-cfxc-v4v2  Low       N/A          N/A    
nokogiri              1.18.10-x86_64-linux-gnu    1.19.4    gem   GHSA-p67v-3w7g-wjg7  Low       N/A          N/A    
nokogiri              1.18.10-x86_64-linux-gnu    1.19.4    gem   GHSA-phwj-rprq-35pp  Low       N/A          N/A    
nokogiri              1.18.10-x86_64-linux-gnu    1.19.4    gem   GHSA-wfpw-mmfh-qq69  Low       N/A          N/A    
nokogiri              1.18.10-x86_64-linux-gnu    1.19.4    gem   GHSA-wjv4-x9w8-wm3h  Low       N/A          N/A    
nokogiri              1.18.10-x86_64-linux-musl   1.19.4    gem   GHSA-5v8h-3h3q-446p  Low       N/A          N/A    
nokogiri              1.18.10-x86_64-linux-musl   1.19.4    gem   GHSA-8678-w3jw-xfc2  Low       N/A          N/A    
nokogiri              1.18.10-x86_64-linux-musl   1.19.4    gem   GHSA-9cv2-cfxc-v4v2  Low       N/A          N/A    
nokogiri              1.18.10-x86_64-linux-musl   1.19.4    gem   GHSA-p67v-3w7g-wjg7  Low       N/A          N/A    
nokogiri              1.18.10-x86_64-linux-musl   1.19.4    gem   GHSA-phwj-rprq-35pp  Low       N/A          N/A    
nokogiri              1.18.10-x86_64-linux-musl   1.19.4    gem   GHSA-wfpw-mmfh-qq69  Low       N/A          N/A    
nokogiri              1.18.10-x86_64-linux-musl   1.19.4    gem   GHSA-wjv4-x9w8-wm3h  Low       N/A          N/A
[0062] ERROR discovered vulnerabilities at or above the severity threshold

(Truncated to last 5000 characters out of 16499)
❌ COPYPASTE / jscpd - 5 errors
Using config from megalinter-reports/jscpd-config.json
Clone found (ruby)
 - bin/rake [8:1 - 27:19] (20 lines, 93 tokens)
   bin/rubocop [8:1 - 27:19]
Clone found (ruby)
 - test/dummy/test/models/example_record_test.rb [72:60 - 92:93] (21 lines, 111 tokens)
   test/dummy/test/models/example_record_test.rb [115:54 - 135:93]
Clone found (ruby)
 - test/dummy/test/models/example_record_test.rb [98:5 - 113:6] (16 lines, 80 tokens)
   test/dummy/test/models/example_record_test.rb [139:5 - 154:6]
Clone found (ruby)
 - test/dummy/test/models/warehouse_record_test.rb [41:60 - 53:14] (13 lines, 51 tokens)
   test/dummy/test/models/warehouse_record_test.rb [64:54 - 76:14]
Clone found (ruby)
 - test/dummy/test/ref_resolvers/blank_ref_resolver_test.rb [32:13 - 47:30] (16 lines, 53 tokens)
   test/dummy/test/ref_resolvers/definitions_resolver_test.rb [23:13 - 38:30]
┌────────┬────────────────┬─────────────┬──────────────┬──────────────┬──────────────────┬───────────────────┐
│ Format │ Files analyzed │ Total lines │ Total tokens │ Clones found │ Duplicated lines │ Duplicated tokens │
├────────┼────────────────┼─────────────┼──────────────┼──────────────┼──────────────────┼───────────────────┤
│ ruby   │ 47             │ 3726        │ 13392        │ 5            │ 81 (2.17%)       │ 388 (2.90%)       │
├────────┼────────────────┼─────────────┼──────────────┼──────────────┼──────────────────┼───────────────────┤
│ Total: │ 47             │ 3726        │ 13392        │ 5            │ 81 (2.17%)       │ 388 (2.90%)       │
└────────┴────────────────┴─────────────┴──────────────┴──────────────┴──────────────────┴───────────────────┘
Found 5 clones.
HTML report saved to megalinter-reports/copy-paste/jscpd-report.html
ERROR: jscpd found too many duplicates (2.2%) over threshold (0.0%)
time: 90.295ms
❌ SPELL / lychee - 14 errors
📝 Summary
---------------------
🔍 Total..........158
🔗 Unique.........140
✅ Successful.....140
⏳ Timeouts.........0
🔀 Redirected......13
👻 Excluded.........1
❓ Unknown..........0
🚫 Errors..........14
⛔ Unsupported.....14

Errors in .github/workflows/mega-linter.yml
[404] https://megalinter.io/configuration/ (at 48:13) | Rejected status code: 404 Not Found
[404] https://megalinter.io/flavors/ (at 44:24) | Rejected status code: 404 Not Found

Errors in .mega-linter.yml
[404] https://megalinter.io/configuration/ (at 3:34) | Rejected status code: 404 Not Found

Errors in docs/way_of_working/code-linting/linters.md
[404] https://megalinter.io/latest/descriptors/api_spectral/ (at 114:56) | Rejected status code: 404 Not Found
[404] https://megalinter.io/latest/descriptors/json_eslint_plugin_jsonc/ (at 90:58) | Rejected status code: 404 Not Found
[404] https://megalinter.io/latest/descriptors/makefile_checkmake/ (at 45:58) | Rejected status code: 404 Not Found
[404] https://megalinter.io/latest/descriptors/markdown_remark_lint/ (at 98:58) | Rejected status code: 404 Not Found
[404] https://megalinter.io/latest/descriptors/puppet_puppet_lint/ (at 124:56) | Rejected status code: 404 Not Found
[404] https://megalinter.io/latest/descriptors/repository_gitleaks/ (at 142:40) | Rejected status code: 404 Not Found
[404] https://megalinter.io/latest/descriptors/repository_kics/ (at 145:40) | Rejected status code: 404 Not Found
[404] https://megalinter.io/latest/descriptors/sql_tsqllint/ (at 73:58) | Rejected status code: 404 Not Found
[404] https://megalinter.io/latest/descriptors/terraform_terrascan/ (at 131:56) | Rejected status code: 404 Not Found

Errors in docs/way_of_working/code-of-conduct.md
[ERROR] file://docs/way_of_working/CODE_OF_CONDUCT.md (at 6:1) | File not found. Check if file exists and path is correct

Errors in docs/way_of_working/decision-records.md
[ERROR] https://gds-way.cloudapps.digital/standards/architecture-decisions.html (at 14:71) | Connection failed. Check network connectivity and firewall settings

Hint: Followed 13 redirects. You might want to consider replacing redirecting URLs with the resolved URLs. Use verbose mode (`-v`/`-vv`) to see redirection details.
Hint: You can configure accepted/rejected response codes with `-a` or `--accept`
❌ REPOSITORY / secretlint - 1 error
test/dummy/config/database.yml
  80:18  error  [PostgreSQLConnection] found PostgreSQL connection string: ************************************************  @secretlint/secretlint-rule-preset-recommend > @secretlint/secretlint-rule-database-connection-string

✖ 1 problem (1 error, 0 warnings, 0 infos)
❌ REPOSITORY / trivy - 1 error
│
│                      │                     │          │        │                   │                                                        │ https://avd.aquasec.com/nvd/cve-2026-26961                   │
├──────────────────────┼─────────────────────┼──────────┤        ├───────────────────┼────────────────────────────────────────────────────────┼──────────────────────────────────────────────────────────────┤
│ rack-session         │ CVE-2026-39324      │ CRITICAL │        │ 2.1.1             │ >= 2.1.2                                               │ Rack::Session is a session management implementation for     │
│                      │                     │          │        │                   │                                                        │ Rack. From 2. ...                                            │
│                      │                     │          │        │                   │                                                        │ https://avd.aquasec.com/nvd/cve-2026-39324                   │
├──────────────────────┼─────────────────────┼──────────┤        ├───────────────────┼────────────────────────────────────────────────────────┼──────────────────────────────────────────────────────────────┤
│ rails-html-sanitizer │ GHSA-cj75-f6xr-r4g7 │ MEDIUM   │        │ 1.6.2             │ >= 1.7.1                                               │ Possible XSS vulnerability with certain configurations of    │
│                      │                     │          │        │                   │                                                        │ rails-html-sanitizer                                         │
│                      │                     │          │        │                   │                                                        │ https://github.com/advisories/GHSA-cj75-f6xr-r4g7            │
├──────────────────────┼─────────────────────┼──────────┤        ├───────────────────┼────────────────────────────────────────────────────────┼──────────────────────────────────────────────────────────────┤
│ websocket-driver     │ CVE-2026-54463      │ HIGH     │        │ 0.8.0             │ >= 0.8.1                                               │ websocket-driver: websocket-driver: Denial of Service via    │
│                      │                     │          │        │                   │                                                        │ unbounded memory consumption in WebSocket length...          │
│                      │                     │          │        │                   │                                                        │ https://avd.aquasec.com/nvd/cve-2026-54463                   │
│                      ├─────────────────────┤          │        │                   │                                                        ├──────────────────────────────────────────────────────────────┤
│                      │ CVE-2026-54465      │          │        │                   │                                                        │ websocket-driver: websocket-driver: Denial of Service via    │
│                      │                     │          │        │                   │                                                        │ unbounded memory consumption                                 │
│                      │                     │          │        │                   │                                                        │ https://avd.aquasec.com/nvd/cve-2026-54465                   │
│                      ├─────────────────────┤          │        │                   ├────────────────────────────────────────────────────────┼──────────────────────────────────────────────────────────────┤
│                      │ CVE-2026-61666      │          │        │                   │ >= 0.8.2                                               │ Denial of service via malformed Host header                  │
│                      │                     │          │        │                   │                                                        │ https://avd.aquasec.com/nvd/cve-2026-61666                   │
│                      ├─────────────────────┼──────────┤        │                   ├────────────────────────────────────────────────────────┼──────────────────────────────────────────────────────────────┤
│                      │ CVE-2026-54464      │ MEDIUM   │        │                   │ >= 0.8.1                                               │ ### Impact If this library is used in tandem with the...     │
│                      │                     │          │        │                   │                                                        │ https://avd.aquasec.com/nvd/cve-2026-54464                   │
└──────────────────────┴─────────────────────┴──────────┴────────┴───────────────────┴────────────────────────────────────────────────────────┴──────────────────────────────────────────────────────────────┘

(Truncated to last 5000 characters out of 58947)
❌ YAML / yamllint - 2 errors
.github/workflows/mega-linter.yml
  53:7      warning  comment not indented like content  (comments-indentation)

test/dummy/config/database.yml
  62:1      error    syntax error: could not find expected ':' (syntax)
⚠️ MARKDOWN / markdownlint - 11 errors
.github/ISSUE_TEMPLATE/job-story.md:8 error MD025/single-title/single-h1 Multiple top-level headings in the same document [Context: "Job Story"]
.github/pull_request_template.md:1 error MD041/first-line-heading/first-line-h1 First line in a file should be a top-level heading [Context: "## What?"]
.github/pull_request_template.md:29 error MD040/fenced-code-language Fenced code blocks should have a language specified [Context: "```"]
CHANGELOG.md:18 error MD024/no-duplicate-heading Multiple headings with the same content [Context: "Fixed"]
CHANGELOG.md:24 error MD024/no-duplicate-heading Multiple headings with the same content [Context: "Fixed"]
CHANGELOG.md:36 error MD024/no-duplicate-heading Multiple headings with the same content [Context: "Fixed"]
CHANGELOG.md:42 error MD024/no-duplicate-heading Multiple headings with the same content [Context: "Added"]
CHANGELOG.md:57 error MD024/no-duplicate-heading Multiple headings with the same content [Context: "Added"]
docs/way_of_working/code-linting/index.md:25:288 error MD059/descriptive-link-text Link text should be descriptive [Context: "[here]"]
docs/way_of_working/pull-request-template-and-guidelines.md:7:401 error MD013/line-length Line length [Expected: 400; Actual: 497]
README.md:7:401 error MD013/line-length Line length [Expected: 400; Actual: 451]

Notices

⚠️ Your configuration references items that have been removed from MegaLinter and are ignored: API_SPECTRAL, JSON_ESLINT_PLUGIN_JSONC, MAKEFILE_CHECKMAKE, MARKDOWN_MARKDOWN_LINK_CHECK, MARKDOWN_REMARK_LINT, PUPPET_PUPPET_LINT, REPOSITORY_GITLEAKS, REPOSITORY_KICS, SQL_TSQLLINT, TERRAFORM_TERRASCAN. See Removed linters to find their replacements.

See detailed reports in MegaLinter artifacts

You could have the same capabilities but better runtime performances if you use a MegaLinter flavor:

Your project could benefit from a custom flavor, which would allow you to run only the linters you need, and thus improve runtime performances. (Skip this info by defining FLAVOR_SUGGESTIONS: false)

  • Documentation: Custom Flavors
  • Command: npx mega-linter-runner@10.0.0 --custom-flavor-setup --custom-flavor-linters ACTION_ACTIONLINT,COPYPASTE_JSCPD,CSS_STYLELINT,HTML_HTMLHINT,JAVASCRIPT_STANDARD,JSON_JSONLINT,JSON_V8R,MARKDOWN_MARKDOWNLINT,MARKDOWN_MARKDOWN_TABLE_FORMATTER,REPOSITORY_CHECKOV,REPOSITORY_DEVSKIM,REPOSITORY_DUSTILOCK,REPOSITORY_GIT_DIFF,REPOSITORY_GRYPE,REPOSITORY_SECRETLINT,REPOSITORY_SYFT,REPOSITORY_TRIVY,REPOSITORY_TRIVY_SBOM,REPOSITORY_TRUFFLEHOG,SPELL_LYCHEE,YAML_YAMLLINT,YAML_V8R

MegaLinter is provided by OX Security
Show us your support by starring ⭐ the repository

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file github_actions Pull requests that update GitHub Actions code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants