From 2c7b3805fd2a0fd8c1884dcaebf91fc102a13ecd Mon Sep 17 00:00:00 2001 From: Anthony Sottile Date: Wed, 7 Feb 2024 09:12:24 -0500 Subject: [PATCH] v3.0.1 --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 924c927..2a30ad0 100644 --- a/README.md +++ b/README.md @@ -33,7 +33,7 @@ jobs: steps: - uses: actions/checkout@v3 - uses: actions/setup-python@v3 - - uses: pre-commit/action@v3.0.0 + - uses: pre-commit/action@v3.0.1 ``` This does a few things: @@ -51,7 +51,7 @@ Here's a sample step configuration that only runs the `flake8` hook against all the files (use the template above except for the `pre-commit` action): ```yaml - - uses: pre-commit/action@v3.0.0 + - uses: pre-commit/action@v3.0.1 with: extra_args: flake8 --all-files ```