From 2f8711130a19801102baf6151080f41392b5b1f6 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 22 Nov 2024 11:36:15 +0100 Subject: [PATCH] chore(deps): bump the github-actions group with 2 updates (#19) * chore(deps): bump the github-actions group with 2 updates Bumps the github-actions group with 2 updates: [actions/checkout](https://github.com/actions/checkout) and [github/super-linter](https://github.com/github/super-linter). Updates `actions/checkout` from 3 to 4 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v3...v4) Updates `github/super-linter` from 4 to 7 - [Release notes](https://github.com/github/super-linter/releases) - [Changelog](https://github.com/github/super-linter/blob/main/CHANGELOG.md) - [Commits](https://github.com/github/super-linter/compare/v4...v7) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: github/super-linter dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions ... Signed-off-by: dependabot[bot] * chore: super linter needs full checkout * fix: remove eslint config * fix: disable checkov and clippy --------- Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Damian Senn Co-authored-by: Damian Senn --- .eslintrc.js | 7 ------- .github/workflows/dispatch-echo-no-inputs.yaml | 2 +- .github/workflows/dispatch-echo.yml | 2 +- .github/workflows/linter.yml | 10 ++++++++-- 4 files changed, 10 insertions(+), 11 deletions(-) delete mode 100644 .eslintrc.js diff --git a/.eslintrc.js b/.eslintrc.js deleted file mode 100644 index abc8686..0000000 --- a/.eslintrc.js +++ /dev/null @@ -1,7 +0,0 @@ -module.exports = { - env: { - node: true, - es2021: true, - }, - extends: ['eslint:recommended'], -}; diff --git a/.github/workflows/dispatch-echo-no-inputs.yaml b/.github/workflows/dispatch-echo-no-inputs.yaml index f44cc31..e830e53 100644 --- a/.github/workflows/dispatch-echo-no-inputs.yaml +++ b/.github/workflows/dispatch-echo-no-inputs.yaml @@ -12,7 +12,7 @@ jobs: steps: - name: Checkout Code - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Sleep run: sleep 30 diff --git a/.github/workflows/dispatch-echo.yml b/.github/workflows/dispatch-echo.yml index e9c63f7..807b7a6 100644 --- a/.github/workflows/dispatch-echo.yml +++ b/.github/workflows/dispatch-echo.yml @@ -30,7 +30,7 @@ jobs: steps: - name: Checkout Code - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Sleep run: sleep ${{ inputs.sleep }} diff --git a/.github/workflows/linter.yml b/.github/workflows/linter.yml index aa66591..6d54ac9 100644 --- a/.github/workflows/linter.yml +++ b/.github/workflows/linter.yml @@ -13,13 +13,19 @@ jobs: steps: - name: Checkout Code - uses: actions/checkout@v3 + uses: actions/checkout@v4 + with: + # super-linter needs the full git history to get the + # list of files that changed across commits + fetch-depth: 0 - name: Lint Code Base - uses: github/super-linter/slim@v4 + uses: github/super-linter@v7 env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} LINTER_RULES_PATH: / + VALIDATE_CHECKOV: false + VALIDATE_RUST_CLIPPY: false # super-linter uses rustc 1.78.0 but mlua requires 1.79.0 VALIDATE_JSCPD: false VALIDATE_PYTHON_BLACK: false JAVASCRIPT_DEFAULT_STYLE: prettier