From 4818ac81cd7ec05e25d7a855b34b73ec1acf6b80 Mon Sep 17 00:00:00 2001 From: Debmalya Pramanik Date: Sat, 17 Aug 2024 12:14:28 +0530 Subject: [PATCH] =?UTF-8?q?=F0=9F=9B=A0=EF=B8=8F=20bugfix=20python=20versi?= =?UTF-8?q?on,=20enclose=20version=20in=20quotations?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - due to yaml parsing, the version identifiers are quoted to avoid 3.10 to be treated as 3.1 - more information actions/runner#1989 --- .github/workflows/code-linting.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/code-linting.yml b/.github/workflows/code-linting.yml index 16d6418..625785a 100644 --- a/.github/workflows/code-linting.yml +++ b/.github/workflows/code-linting.yml @@ -14,7 +14,7 @@ jobs: strategy: fail-fast: false matrix: - python-version: [3.8, 3.9, 3.10, 3.11, 3.12] + python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"] steps: - uses: actions/checkout@v2