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 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/*" 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 }}