This is an automated email from the ASF dual-hosted git repository. bowenliang pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/kyuubi.git
The following commit(s) were added to refs/heads/master by this push: new 98b392923 [KYUUBI #6682] Bump super-linter to v7 98b392923 is described below commit 98b39292301573b9d8a8b44af725385ee3a24a2b Author: Bowen Liang <liangbo...@gf.com.cn> AuthorDate: Wed Sep 18 10:37:55 2024 +0800 [KYUUBI #6682] Bump super-linter to v7 # :mag: Description ## Issue References ๐ This pull request fixes # ## Describe Your Solution ๐ง - bump superlinter Github Action to v7 - skip linting `.env` files as the rules are too strict in unorder keys - remove deprecated `ERROR_ON_MISSING_EXEC_BIT` option - no major change ## Types of changes :bookmark: - [ ] Bugfix (non-breaking change which fixes an issue) - [ ] New feature (non-breaking change which adds functionality) - [ ] Breaking change (fix or feature that would cause existing functionality to change) ## Test Plan ๐งช #### Behavior Without This Pull Request :coffin: #### Behavior With This Pull Request :tada: - pass the style CI workflow #### Related Unit Tests --- # Checklist ๐ - [x] This patch was not authored or co-authored using [Generative Tooling](https://www.apache.org/legal/generative-tooling.html) **Be nice. Be informative.** Closes #6682 from bowenliang123/superlinter-7. Closes #6682 0ff321127 [Bowen Liang] skip linting env files cab7aa810 [liangbowen] Remove deprecated ERROR_ON_MISSING_EXEC_BIT 67515df5b [liangbowen] bump superlinter to v7 Lead-authored-by: Bowen Liang <liangbo...@gf.com.cn> Co-authored-by: liangbowen <liangbo...@gf.com.cn> Signed-off-by: liangbowen <liangbo...@gf.com.cn> --- .github/workflows/style.yml | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/.github/workflows/style.yml b/.github/workflows/style.yml index 90437579f..791dea146 100644 --- a/.github/workflows/style.yml +++ b/.github/workflows/style.yml @@ -108,10 +108,9 @@ jobs: echo "---------------------------------------------------------------------------------" - name: Super Linter Checks - uses: github/super-linter/slim@v5 + uses: github/super-linter/slim@v7 env: CREATE_LOG_FILE: true - ERROR_ON_MISSING_EXEC_BIT: true GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} IGNORE_GENERATED_FILES: true IGNORE_GITIGNORED_FILES: true @@ -119,7 +118,6 @@ jobs: LOG_LEVEL: NOTICE SUPPRESS_POSSUM: true VALIDATE_BASH_EXEC: true - VALIDATE_ENV: true VALIDATE_JSONC: true VALIDATE_POWERSHELL: true VALIDATE_XML: true