From 93b6e00b4dbd3a6d6d27810cbef044deca1c0228 Mon Sep 17 00:00:00 2001 From: Matthias Schoettle Date: Mon, 17 Feb 2025 06:24:46 -0500 Subject: [PATCH] docs: update README to reflect latest changes and version --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 767f262..4f21518 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,5 @@ This action is a fork of the [official `pre-commit` action](https://github.com/pre-commit/action). -The only change is that it uses [`uv`](https://docs.astral.sh/uv/) to install `pre-commit`. +The only change is that it uses [`uv`](https://docs.astral.sh/uv/) to install `pre-commit` (using [uvx](https://docs.astral.sh/uv/guides/tools/#running-tools)). ___ @@ -29,7 +29,7 @@ jobs: steps: - uses: actions/checkout@v4 - uses: astral-sh/setup-uv@v5 - - uses: mschoettle/pre-commit-action@v4.0.0 + - uses: mschoettle/pre-commit-action@v4.0.2 ``` This does a few things: @@ -47,7 +47,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: mschoettle/pre-commit-action@v4.0.0 + - uses: mschoettle/pre-commit-action@v4.0.2 with: extra_args: flake8 --all-files ```