From 802c8ba70aa1e8196dffb49557d6e83d5259329d Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sun, 1 Mar 2026 14:16:37 +0000 Subject: [PATCH 1/2] [actions] Bump the all group across 1 directory with 2 updates Bumps the all group with 2 updates in the / directory: [actions/upload-artifact](https://github.com/actions/upload-artifact) and [super-linter/super-linter](https://github.com/super-linter/super-linter). Updates `actions/upload-artifact` from 6 to 7 - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](https://github.com/actions/upload-artifact/compare/v6...v7) Updates `super-linter/super-linter` from 8.3.2 to 8.5.0 - [Release notes](https://github.com/super-linter/super-linter/releases) - [Changelog](https://github.com/super-linter/super-linter/blob/main/CHANGELOG.md) - [Commits](https://github.com/super-linter/super-linter/compare/d5b0a2ab116623730dd094f15ddc1b6b25bf7b99...61abc07d755095a68f4987d1c2c3d1d64408f1f9) --- updated-dependencies: - dependency-name: actions/upload-artifact dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: all - dependency-name: super-linter/super-linter dependency-version: 8.5.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: all ... Signed-off-by: dependabot[bot] --- .github/workflows/check-dist.yml | 2 +- .github/workflows/linter.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/check-dist.yml b/.github/workflows/check-dist.yml index 7139f31..995c54e 100644 --- a/.github/workflows/check-dist.yml +++ b/.github/workflows/check-dist.yml @@ -57,7 +57,7 @@ jobs: - if: ${{ failure() && steps.diff.outcome == 'failure' }} name: Upload Artifact id: upload - uses: actions/upload-artifact@v6 + uses: actions/upload-artifact@v7 with: name: dist path: dist/ diff --git a/.github/workflows/linter.yml b/.github/workflows/linter.yml index a37404d..47e3b2e 100644 --- a/.github/workflows/linter.yml +++ b/.github/workflows/linter.yml @@ -39,7 +39,7 @@ jobs: - name: Lint Codebase id: super-linter - uses: super-linter/super-linter/slim@d5b0a2ab116623730dd094f15ddc1b6b25bf7b99 + uses: super-linter/super-linter/slim@61abc07d755095a68f4987d1c2c3d1d64408f1f9 env: DEFAULT_BRANCH: main FILTER_REGEX_EXCLUDE: dist/**/* From 8ef74d50a463e0d57343f4c9b857a6b1aa92ff19 Mon Sep 17 00:00:00 2001 From: Antoine Froger Date: Fri, 6 Mar 2026 14:20:38 +0100 Subject: [PATCH 2/2] Remove super-linter workflow (redundant with ESLint in CI) --- .github/workflows/linter.yml | 55 ------------------------------------ 1 file changed, 55 deletions(-) delete mode 100644 .github/workflows/linter.yml diff --git a/.github/workflows/linter.yml b/.github/workflows/linter.yml deleted file mode 100644 index 47e3b2e..0000000 --- a/.github/workflows/linter.yml +++ /dev/null @@ -1,55 +0,0 @@ -name: Lint Codebase - -on: - pull_request: - branches: - - main - push: - branches: - - main - -permissions: - contents: read - packages: read - statuses: write - -jobs: - lint: - name: Lint Codebase - runs-on: ubuntu-latest - - steps: - - name: Checkout - id: checkout - uses: actions/checkout@v6 - with: - fetch-depth: 0 - persist-credentials: false - - - name: Setup Node.js - id: setup-node - uses: actions/setup-node@v6 - with: - node-version-file: .node-version - cache: npm - - - name: Install Dependencies - id: install - run: npm ci - - - name: Lint Codebase - id: super-linter - uses: super-linter/super-linter/slim@61abc07d755095a68f4987d1c2c3d1d64408f1f9 - env: - DEFAULT_BRANCH: main - FILTER_REGEX_EXCLUDE: dist/**/* - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - LINTER_RULES_PATH: . - VALIDATE_ALL_CODEBASE: true - VALIDATE_BIOME_FORMAT: false - VALIDATE_BIOME_LINT: false - VALIDATE_GITHUB_ACTIONS_ZIZMOR: false - VALIDATE_JAVASCRIPT_ES: false - VALIDATE_JSCPD: false - VALIDATE_TYPESCRIPT_ES: false - VALIDATE_JSON: false