From b04455dcf4d77acec3094a853b82141a7760e1ed Mon Sep 17 00:00:00 2001 From: Christian Clauss Date: Wed, 29 Mar 2023 12:57:36 +0200 Subject: [PATCH] Upgrade GitHub Actions setup-python https://github.com/actions/setup-python/releases --- codespell-problem-matcher/.github/workflows/test.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/codespell-problem-matcher/.github/workflows/test.yml b/codespell-problem-matcher/.github/workflows/test.yml index 5116018..39afde8 100644 --- a/codespell-problem-matcher/.github/workflows/test.yml +++ b/codespell-problem-matcher/.github/workflows/test.yml @@ -25,7 +25,9 @@ jobs: steps: - name: Checkout uses: actions/checkout@master - - uses: actions/setup-python@v1 + - uses: actions/setup-python@v4 + with: + python-version:3.x - run: pip install git+https://github.com/codespell-project/codespell.git - uses: ./ - name: Check codespell