From fca9db59af97d611586f3d20b5d5196a32baea59 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Timoth=C3=A9e=20Mazzucotelli?= Date: Sat, 22 May 2021 17:21:50 +0200 Subject: [PATCH] Fix version in README Using `2.0` results in > Error: Unable to resolve action `pdm-project/setup-pdm@v2.0`, unable to find version `v2.0` ...in a GitHub workflow. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 7b9b542..9e0450e 100644 --- a/README.md +++ b/README.md @@ -14,7 +14,7 @@ Include the action in your workflow yaml file with the following arguments: ```yaml steps: ... - - uses: pdm-project/setup-pdm@v2.0 + - uses: pdm-project/setup-pdm@v2 name: Setup PDM with: python-version: 3.8 # Version range or exact version of a Python version to use, the same as actions/setup-python