From 9d7c11a11be0984db8d5d3464bcbd72a3194d297 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Mon, 28 Apr 2025 06:01:56 +0000 Subject: [PATCH 1/6] Update .pre-commit-config.yaml --- .github/workflows/update-pre-commit-hooks.yml | 1 + .pre-commit-config.yaml | 47 +++---------------- 2 files changed, 7 insertions(+), 41 deletions(-) diff --git a/.github/workflows/update-pre-commit-hooks.yml b/.github/workflows/update-pre-commit-hooks.yml index 86266c4..5cd85de 100644 --- a/.github/workflows/update-pre-commit-hooks.yml +++ b/.github/workflows/update-pre-commit-hooks.yml @@ -11,6 +11,7 @@ permissions: jobs: update: runs-on: ubuntu-latest + steps: - name: Check out repository uses: actions/checkout@v5 diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 997aa03..16b6388 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -12,12 +12,12 @@ default_language_version: exclude: | (?x)^( - \.vscode/.*| + \.vscode/.* )$ repos: - repo: https://github.com/pre-commit/pre-commit-hooks - rev: v5.0.0 + rev: v6.0.0 hooks: - id: check-added-large-files args: ["--maxkb=500"] @@ -45,8 +45,6 @@ repos: # - id: file-contents-sorter # files: ^(deploy-whitelist.txt|\.gitignore|\.dockerignore)$ - id: fix-byte-order-marker - - id: fix-encoding-pragma - args: ["--remove"] - id: forbid-new-submodules # - id: forbid-submodules - id: mixed-line-ending @@ -63,52 +61,19 @@ repos: - id: trailing-whitespace # ruff - - repo: https://github.com/charliermarsh/ruff-pre-commit - rev: "v0.11.12" + - repo: https://github.com/astral-sh/ruff-pre-commit + rev: v0.12.11 hooks: - id: ruff args: [--fix, --exit-non-zero-on-fix] - id: ruff-format # security - - repo: https://github.com/PyCQA/bandit - rev: 1.8.3 - hooks: - - id: bandit - args: ["--skip", "B101,B404"] - - repo: https://github.com/gitleaks/gitleaks - rev: v8.27.0 + rev: v8.28.0 hooks: - id: gitleaks - # - repo: https://github.com/trufflesecurity/truffleHog - # rev: v3.88.4 - # hooks: - # - id: trufflehog - - # minor formatting - - repo: https://github.com/pre-commit/pygrep-hooks - rev: v1.10.0 - hooks: - - id: python-check-blanket-noqa - # not, since '# type: ignore' is ok for me - # - id: python-check-blanket-type-ignore - - id: python-check-mock-methods - - id: python-no-eval - - id: python-no-log-warn - - id: python-use-type-annotations - - id: rst-backticks - - id: rst-directive-colons - - id: rst-inline-touching-normal - - id: text-unicode-replacement-char - - # CRLF -> LF - - repo: https://github.com/Lucas-C/pre-commit-hooks - rev: v1.5.5 - hooks: - - id: remove-crlf - # markdown - repo: https://github.com/igorshubovych/markdownlint-cli rev: v0.45.0 @@ -118,6 +83,6 @@ repos: # code spell check via cspell - repo: https://github.com/streetsidesoftware/cspell-cli - rev: v9.0.1 + rev: v9.2.0 hooks: - id: cspell From 0608dff82a7c9713d1b3680d7cae016cdff09a93 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Mon, 8 Sep 2025 05:57:50 +0000 Subject: [PATCH 2/6] Update .pre-commit-config.yaml --- .pre-commit-config.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 16b6388..014a7f9 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -62,7 +62,7 @@ repos: # ruff - repo: https://github.com/astral-sh/ruff-pre-commit - rev: v0.12.11 + rev: v0.12.12 hooks: - id: ruff args: [--fix, --exit-non-zero-on-fix] From 1443e7b718118a4909f3051c18574b6360cb6c0f Mon Sep 17 00:00:00 2001 From: Torben <59419684+entorb@users.noreply.github.com> Date: Tue, 9 Sep 2025 18:56:40 +0200 Subject: [PATCH 3/6] actions/setup-python@v6 --- .github/workflows/check.yml | 2 +- .github/workflows/update-pre-commit-hooks.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/check.yml b/.github/workflows/check.yml index d483849..d6d68e0 100644 --- a/.github/workflows/check.yml +++ b/.github/workflows/check.yml @@ -27,7 +27,7 @@ jobs: enable-cache: true - name: Python set up - uses: actions/setup-python@v5 + uses: actions/setup-python@v6 with: python-version-file: ".python-version" diff --git a/.github/workflows/update-pre-commit-hooks.yml b/.github/workflows/update-pre-commit-hooks.yml index 5cd85de..3c559b2 100644 --- a/.github/workflows/update-pre-commit-hooks.yml +++ b/.github/workflows/update-pre-commit-hooks.yml @@ -17,7 +17,7 @@ jobs: uses: actions/checkout@v5 - name: Python set up - uses: actions/setup-python@v5 + uses: actions/setup-python@v6 with: python-version-file: ".python-version" # pre-commit has its own cache From 8f783f97cf21430bf07241ba053ec8171a71bceb Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Mon, 15 Sep 2025 05:57:42 +0000 Subject: [PATCH 4/6] Update .pre-commit-config.yaml --- .pre-commit-config.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 014a7f9..56af4ba 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -62,7 +62,7 @@ repos: # ruff - repo: https://github.com/astral-sh/ruff-pre-commit - rev: v0.12.12 + rev: v0.13.0 hooks: - id: ruff args: [--fix, --exit-non-zero-on-fix] From d156bed9b0ffad13610726dccccf019b2ffdbbb9 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Mon, 22 Sep 2025 05:57:54 +0000 Subject: [PATCH 5/6] Update .pre-commit-config.yaml --- .pre-commit-config.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 56af4ba..ad800eb 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -62,7 +62,7 @@ repos: # ruff - repo: https://github.com/astral-sh/ruff-pre-commit - rev: v0.13.0 + rev: v0.13.1 hooks: - id: ruff args: [--fix, --exit-non-zero-on-fix] From fe617277dd1e804dcd31e3b17a7ea4f543f4cfff Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 22 Sep 2025 12:17:05 +0000 Subject: [PATCH 6/6] =?UTF-8?q?=E2=AC=86=20Bump=20SonarSource/sonarqube-sc?= =?UTF-8?q?an-action=20from=205=20to=206?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Bumps [SonarSource/sonarqube-scan-action](https://github.com/sonarsource/sonarqube-scan-action) from 5 to 6. - [Release notes](https://github.com/sonarsource/sonarqube-scan-action/releases) - [Commits](https://github.com/sonarsource/sonarqube-scan-action/compare/v5...v6) --- updated-dependencies: - dependency-name: SonarSource/sonarqube-scan-action dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/check.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/check.yml b/.github/workflows/check.yml index d6d68e0..4cc7f9b 100644 --- a/.github/workflows/check.yml +++ b/.github/workflows/check.yml @@ -40,7 +40,7 @@ jobs: # for SonarQube coverage report - name: SonarQube Scan - uses: SonarSource/sonarqube-scan-action@v5 + uses: SonarSource/sonarqube-scan-action@v6 env: SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}