From 0d4872c541aa9dd83b7b09cd26ba9be652ccbd6f Mon Sep 17 00:00:00 2001 From: Magnus Hagander Date: Fri, 22 Dec 2023 11:40:56 +0100 Subject: [PATCH] Update python version in github action to validate syntax This one has been failing for a *long* time and apparentyl nobody noticed. We're using python 3.9 in deployments now, so of course our checks should be on the same version... --- .github/workflows/validate-syntax.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/validate-syntax.yaml b/.github/workflows/validate-syntax.yaml index 2fe8ba07..bd3abd92 100644 --- a/.github/workflows/validate-syntax.yaml +++ b/.github/workflows/validate-syntax.yaml @@ -8,7 +8,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: [3.7] + python-version: [3.9] steps: - uses: actions/checkout@v2 -- 2.39.5