Skip to content

Commit 0a65978

Browse files
authored
Merge pull request #128 from FoamyGuy/update_python_in_workflow
use python 3.12 inside actions containers
2 parents 019a606 + 553dcf7 commit 0a65978

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,10 @@ jobs:
1515
env:
1616
GITHUB_CONTEXT: ${{ toJson(github) }}
1717
run: echo "$GITHUB_CONTEXT"
18-
- name: Set up Python 3.10
18+
- name: Set up Python 3.12
1919
uses: actions/setup-python@v5
2020
with:
21-
python-version: "3.10"
21+
python-version: "3.12"
2222
- name: Versions
2323
run: |
2424
python3 --version

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
- name: Set up Python
2121
uses: actions/setup-python@v5
2222
with:
23-
python-version: '3.10'
23+
python-version: '3.12'
2424
- name: Install dependencies
2525
run: |
2626
python -m pip install --upgrade pip

0 commit comments

Comments
 (0)