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 09932da to 0987184 Compare January 28, 2026 22:11
@MariusStorhaug MariusStorhaug force-pushed the update/super-linter-v8.4.0 branch from 0987184 to 902adf6 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
Contributor

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 version v8.3.2 to v8.4.0 and adds a configuration file for the codespell linter to exclude the linters directory from spell checking.

Changes:

  • Updated super-linter action from v8.3.2 to v8.4.0 with the corresponding commit hash
  • Added .codespellrc configuration file to skip spell checking in 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 reference to v8.4.0 (commit hash 12562e48d7059cf666c43a4ecb0d3b5a2b31bd9e)
.github/linters/.codespellrc Added new codespell configuration file to skip linting of the linters directory itself

💡 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 ./.github/linters may not work as expected with codespell. According to codespell documentation, the skip option expects glob patterns or comma-separated paths without the leading ./.

Consider changing this to one of the following:

  • skip = .github/linters (without the leading ./)
  • skip = .github/linters/* (to be more explicit about skipping files within the directory)
  • skip = *.rc,*.yml,*.psd1 (if you want to skip specific file types in that directory)

The current pattern with ./ prefix may cause codespell to not properly skip files in the linters directory.

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