From 4d9c0900f37a53c4c7ba29c3d75ed89e7fe9983a Mon Sep 17 00:00:00 2001 From: Lucas Bickel <116588+hairmare@users.noreply.github.com> Date: Sat, 11 Jun 2022 09:44:19 +0200 Subject: [PATCH] docs: update to work with actions/setup-python@v4 --- README.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index dfdd651..e222a29 100644 --- a/README.md +++ b/README.md @@ -33,7 +33,9 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v3 - - uses: actions/setup-python@v3 + - uses: actions/setup-python@v4 + with: + python-version: '3.x' - uses: pre-commit/action@v3.0.0 ```