From c556ca8599897393bf300f4f8a2255d05e5211f0 Mon Sep 17 00:00:00 2001 From: Jose Tomas Robles Hahn Date: Fri, 25 Apr 2025 16:04:58 -0400 Subject: [PATCH 1/3] chore: Update Dependabot configuration - Rename group `production-dependencies` to `github-actions-production`. - Update comments. --- .github/dependabot.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 60df9c8..5faf158 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -1,9 +1,9 @@ # GitHub Dependabot Configuration # -# Dependabot can maintain your repository's dependencies automatically. +# Dependabot can maintain your repository’s dependencies automatically. # # Documentation: -# - https://docs.github.com/en/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file +# - https://docs.github.com/en/code-security/dependabot/working-with-dependabot/dependabot-options-reference # - https://docs.github.com/en/code-security/dependabot/dependabot-version-updates # - https://github.com/dependabot/dependabot-core/#readme @@ -13,7 +13,7 @@ updates: - package-ecosystem: github-actions directory: / groups: - production-dependencies: + github-actions-production: dependency-type: production schedule: interval: monthly From 115657f629b0417c92e5104eadb61365465d990d Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 25 Apr 2025 20:12:18 +0000 Subject: [PATCH 2/3] chore: Bump actions/setup-node in the github-actions-production group Bumps the github-actions-production group with 1 update: [actions/setup-node](https://github.com/actions/setup-node). Updates `actions/setup-node` from 4.3.0 to 4.4.0 - [Release notes](https://github.com/actions/setup-node/releases) - [Commits](https://github.com/actions/setup-node/compare/v4.3.0...v4.4.0) --- updated-dependencies: - dependency-name: actions/setup-node dependency-version: 4.4.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: github-actions-production ... Signed-off-by: dependabot[bot] --- .github/workflows/git-commit-lint.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/git-commit-lint.yaml b/.github/workflows/git-commit-lint.yaml index 50f31ea..9cd8af0 100644 --- a/.github/workflows/git-commit-lint.yaml +++ b/.github/workflows/git-commit-lint.yaml @@ -45,7 +45,7 @@ jobs: - name: Set Up Node.js id: set_up_nodejs - uses: actions/setup-node@v4.3.0 + uses: actions/setup-node@v4.4.0 with: node-version: "lts/*" From f514e6126c7899c9eb34f90a1038887a3e3c13f9 Mon Sep 17 00:00:00 2001 From: Jose Tomas Robles Hahn Date: Tue, 6 May 2025 10:17:58 -0400 Subject: [PATCH 3/3] chore: Add Super-Linter parameter `filter_regex_exclude` This parameter can be used to exclude some files from Super-Linter's validations. --- .github/workflows/super-linter.yaml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/super-linter.yaml b/.github/workflows/super-linter.yaml index ed50744..dbd19c9 100644 --- a/.github/workflows/super-linter.yaml +++ b/.github/workflows/super-linter.yaml @@ -20,6 +20,10 @@ on: required: false default: true description: When `true`, validate all files; when `false`, only new or edited files. + filter_regex_exclude: + type: string + required: false + description: Regular expression defining which files will be excluded from linting. validate_editorconfig: type: boolean @@ -172,4 +176,5 @@ jobs: DEFAULT_BRANCH: ${{ inputs.default_git_branch }} LINTER_RULES_PATH: / VALIDATE_ALL_CODEBASE: ${{ inputs.validate_all_codebase }} + FILTER_REGEX_EXCLUDE: ${{ inputs.filter_regex_exclude }} GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}