Skip to content

Commit bd2d638

Browse files
authored
Merge pull request #505 from FoamyGuy/newer_python_actions
update python version used by actions
2 parents 897380f + b995150 commit bd2d638

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

.github/workflows/build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,10 @@ jobs:
1818
awk -F '\/' '{ print tolower($2) }' |
1919
tr '_' '-'
2020
)" >> $GITHUB_OUTPUT
21-
- name: Set up Python 3.10
21+
- name: Set up Python 3.12
2222
uses: actions/setup-python@v4
2323
with:
24-
python-version: "3.10"
24+
python-version: "3.12"
2525
- name: Versions
2626
run: |
2727
python3 --version

.github/workflows/images.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,10 +22,10 @@ jobs:
2222

2323
- name: checkout submodules
2424
run: git submodule update --init --jobs 16 --depth 1
25-
- name: Set up Python 3.10
25+
- name: Set up Python 3.12
2626
uses: actions/setup-python@v4
2727
with:
28-
python-version: "3.10"
28+
python-version: "3.12"
2929

3030
- name: Checkout screenshot maker
3131
run: git clone --depth=1 https://github.com/circuitpython/CircuitPython_Library_Screenshot_Maker

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,10 +21,10 @@ jobs:
2121
awk -F '\/' '{ print tolower($2) }' |
2222
tr '_' '-'
2323
)" >> $GITHUB_OUTPUT
24-
- name: Set up Python 3.10
24+
- name: Set up Python 3.12
2525
uses: actions/setup-python@v4
2626
with:
27-
python-version: "3.10"
27+
python-version: "3.12"
2828
- name: Versions
2929
run: |
3030
python3 --version

0 commit comments

Comments
 (0)