From 9d6cdf216d501c410bfc89fc42b40b9f9ecae3b6 Mon Sep 17 00:00:00 2001 From: Tim van der Meij Date: Sat, 28 Oct 2023 20:02:08 +0200 Subject: [PATCH] Use Python 3.12 in the GitHub Actions workflow for the Fluent linter The current stable version of Python is Python 3.12, see https://www.python.org/downloads, so we should switch to that since Python 3.10 is older and only receives security updates. --- .github/workflows/fluent_linter.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/fluent_linter.yml b/.github/workflows/fluent_linter.yml index 0be98bf87..df9d9c651 100644 --- a/.github/workflows/fluent_linter.yml +++ b/.github/workflows/fluent_linter.yml @@ -27,10 +27,10 @@ jobs: - name: Checkout repository uses: actions/checkout@v4 - - name: Use Python 3.10 + - name: Use Python 3.12 uses: actions/setup-python@v4 with: - python-version: '3.10' + python-version: '3.12' cache: 'pip' - name: Install Fluent dependencies