From a1a5124475d72c03304604474391ade09c452120 Mon Sep 17 00:00:00 2001 From: Artem Rys <79191415+arys-splunk@users.noreply.github.com> Date: Wed, 6 Apr 2022 10:50:14 +0200 Subject: [PATCH] chore: remove actionlint (#456) * chore: remove actionlint * chore: pre-commit autoupdate --- .github/workflows/build-test-release.yml | 3 --- .pre-commit-config.yaml | 15 +++------------ 2 files changed, 3 insertions(+), 15 deletions(-) diff --git a/.github/workflows/build-test-release.yml b/.github/workflows/build-test-release.yml index 1a904d3a6..0a335b122 100644 --- a/.github/workflows/build-test-release.yml +++ b/.github/workflows/build-test-release.yml @@ -122,9 +122,6 @@ jobs: - uses: actions/setup-python@v3 with: python-version: "3.7" - - name: Install actionlint - run: | - bash <(curl https://raw.githubusercontent.com/rhysd/actionlint/v1.6.8/scripts/download-actionlint.bash) - uses: pre-commit/action@v2.0.3 semgrep: runs-on: ubuntu-latest diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 347d19a75..e93d182d4 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -21,13 +21,13 @@ repos: - id: check-merge-conflict - id: debug-statements - repo: https://github.com/asottile/pyupgrade - rev: v2.31.0 + rev: v2.31.1 hooks: - id: pyupgrade args: - --py37-plus - repo: https://github.com/psf/black - rev: 21.12b0 + rev: 22.3.0 hooks: - id: black - repo: https://github.com/PyCQA/isort @@ -35,7 +35,7 @@ repos: hooks: - id: isort - repo: https://github.com/pre-commit/mirrors-mypy - rev: v0.931 + rev: v0.942 hooks: - id: mypy exclude: ^docs/ @@ -43,12 +43,3 @@ repos: rev: 4.0.1 hooks: - id: flake8 -- repo: local - hooks: - - id: actionlint - name: actionlint - entry: actionlint - args: [-ignore, 'property ".+" is not defined in object type'] - language: script - types: ["yaml"] - files: ^.github/workflows/