Skip to content

Commit

Permalink
Use Python 3.12 in the GitHub Actions workflow for the Fluent linter
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
timvandermeij committed Oct 28, 2023
1 parent 4be44a3 commit 9d6cdf2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/fluent_linter.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 9d6cdf2

Please sign in to comment.