Skip to content

Commit 5cc67d7

Browse files
committed
Update workflows to Python 3.10
1 parent 4ffa129 commit 5cc67d7

File tree

3 files changed

+9
-6
lines changed

3 files changed

+9
-6
lines changed

.github/workflows/melpazoid-zk-desktop.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,10 @@ jobs:
1111
runs-on: ubuntu-latest
1212
steps:
1313
- uses: actions/checkout@v2
14-
- name: Set up Python 3.9
14+
- name: Set up Python 3.10
1515
uses: actions/setup-python@v1
16-
with: { python-version: 3.9 }
16+
with:
17+
python-version: '3.10'
1718
- name: Install
1819
run: |
1920
python -m pip install --upgrade pip

.github/workflows/melpazoid-zk-index.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,10 @@ jobs:
1111
runs-on: ubuntu-latest
1212
steps:
1313
- uses: actions/checkout@v2
14-
- name: Set up Python 3.9
14+
- name: Set up Python 3.10
1515
uses: actions/setup-python@v1
16-
with: { python-version: 3.9 }
16+
with:
17+
python-version: '3.10'
1718
- name: Install
1819
run: |
1920
python -m pip install --upgrade pip

.github/workflows/melpazoid-zk.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,10 @@ jobs:
1111
runs-on: ubuntu-latest
1212
steps:
1313
- uses: actions/checkout@v2
14-
- name: Set up Python 3.9
14+
- name: Set up Python 3.10
1515
uses: actions/setup-python@v1
16-
with: { python-version: 3.9 }
16+
with:
17+
python-version: '3.10'
1718
- name: Install
1819
run: |
1920
python -m pip install --upgrade pip

0 commit comments

Comments
 (0)