From f8b7ed36a14910d506053bdc608436dded46acdb Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 6 Oct 2023 14:02:38 +0000 Subject: [PATCH] build(deps): bump pre-commit/action from 2.0.3 to 3.0.0 Bumps [pre-commit/action](https://github.com/pre-commit/action) from 2.0.3 to 3.0.0. - [Release notes](https://github.com/pre-commit/action/releases) - [Commits](https://github.com/pre-commit/action/compare/v2.0.3...v3.0.0) --- updated-dependencies: - dependency-name: pre-commit/action dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/pre-commit-check.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/pre-commit-check.yml b/.github/workflows/pre-commit-check.yml index f578df74..7d4a8a6e 100644 --- a/.github/workflows/pre-commit-check.yml +++ b/.github/workflows/pre-commit-check.yml @@ -28,14 +28,14 @@ jobs: # run only if changed files were detected - name: Run against changes - uses: pre-commit/action@v2.0.3 + uses: pre-commit/action@v3.0.0 if: steps.filter.outputs.addedOrModified == 'true' with: extra_args: --files ${{ steps.filter.outputs.addedOrModified_files }} # run if no changed files were detected (e.g. workflow_dispatch on master branch) - name: Run against all files - uses: pre-commit/action@v2.0.3 + uses: pre-commit/action@v3.0.0 if: steps.filter.outputs.addedOrModified != 'true' with: extra_args: --all-files