Skip to content

Commit 701b956

Browse files
committed
ci(actions): Update to Py3.13 on ubuntu
Closes espressif#1047
1 parent d37c38a commit 701b956

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

.github/workflows/dev_release_esptool_pypi.yml

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

1717
steps:
1818
- uses: actions/checkout@master
19-
- name: Set up Python 3.8
19+
- name: Set up Python 3.13
2020
uses: actions/setup-python@master
2121
with:
22-
python-version: '3.8'
22+
python-version: '3.13'
2323
- name: Install dependencies
2424
run: |
2525
python -m pip install --upgrade pip

.github/workflows/release_esptool_pypi.yml

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

1414
steps:
1515
- uses: actions/checkout@master
16-
- name: Set up Python 3.7
16+
- name: Set up Python 3.13
1717
uses: actions/setup-python@master
1818
with:
19-
python-version: '3.7'
19+
python-version: '3.13'
2020
- name: Install dependencies
2121
run: |
2222
python -m pip install --upgrade pip

.github/workflows/test_esptool.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ on: [push, pull_request]
44

55
jobs:
66
test_esptool:
7-
runs-on: ubuntu-latest
7+
runs-on: ubuntu-22.04 # 22.04 is the last version with Python 3.7
88

99
strategy:
1010
matrix:
@@ -63,7 +63,7 @@ jobs:
6363
git diff --exit-code
6464
6565
lint_esptool:
66-
runs-on: ubuntu-latest
66+
runs-on: ubuntu-22.04 # 22.04 is the last version with Python 3.7
6767
steps:
6868
- name: Checkout
6969
uses: actions/checkout@master

0 commit comments

Comments
 (0)