From 6421ca2b22a8ebd801ca17b2ea38a98d353f1faa Mon Sep 17 00:00:00 2001 From: Simon Willison Date: Fri, 9 Oct 2020 09:28:17 -0700 Subject: [PATCH] Use actions/setup-python@v2 to deploy latest This should fix an error with Python 3.9. --- .github/workflows/deploy-latest.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/deploy-latest.yml b/.github/workflows/deploy-latest.yml index 625d16b9..55aabb76 100644 --- a/.github/workflows/deploy-latest.yml +++ b/.github/workflows/deploy-latest.yml @@ -12,7 +12,7 @@ jobs: - name: Check out datasette uses: actions/checkout@v2 - name: Set up Python - uses: actions/setup-python@v1 + uses: actions/setup-python@v2 with: python-version: 3.9 - uses: actions/cache@v2