Skip to content

Conversation

@MariusStorhaug
Copy link
Member

@MariusStorhaug MariusStorhaug commented Jan 28, 2026

Description

Updates super-linter from v8.3.2 to v8.4.0.

Changes

  • Updated super-linter/super-linter to v8.4.0 (12562e48d7059cf666c43a4ecb0d3b5a2b31bd9e)
  • Added .codespellrc configuration file for codespell linter

References

@MariusStorhaug MariusStorhaug force-pushed the update/super-linter-v8.4.0 branch from 8d496d0 to fffc415 Compare January 28, 2026 22:11
@MariusStorhaug MariusStorhaug force-pushed the update/super-linter-v8.4.0 branch from fffc415 to 52f0d37 Compare January 28, 2026 22:36
@MariusStorhaug MariusStorhaug marked this pull request as ready for review January 29, 2026 12:31
Copilot AI review requested due to automatic review settings January 29, 2026 12:31
Copy link

Copilot AI left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Pull request overview

This PR updates the super-linter GitHub Action from v8.3.2 to v8.4.0 and adds a codespell configuration file to customize the behavior of the newly integrated codespell linter.

Changes:

  • Updated super-linter action reference to v8.4.0 with corresponding commit hash
  • Added .codespellrc configuration file to skip linting the .github/linters directory

Reviewed changes

Copilot reviewed 2 out of 2 changed files in this pull request and generated 1 comment.

File Description
.github/workflows/Linter.yml Updated super-linter action from v8.3.2 to v8.4.0 with the corresponding commit hash
.github/linters/.codespellrc Added codespell configuration to exclude the linters directory from spell checking

💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.

@@ -0,0 +1,2 @@
[codespell]
skip = ./.github/linters
Copy link

Copilot AI Jan 29, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The skip path pattern uses a relative path prefix ./ which may not work correctly with codespell. According to codespell documentation, the skip parameter should use glob patterns or comma-separated paths without the leading ./. Consider changing this to either .github/linters (relative path without prefix) or **/linters/** (glob pattern) to ensure the directory is properly excluded from codespell checks.

Suggested change
skip = ./.github/linters
skip = .github/linters

Copilot uses AI. Check for mistakes.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants