Skip to content

Commit

Permalink
Update workflows to Python 3.10
Browse files Browse the repository at this point in the history
  • Loading branch information
localauthor committed Oct 6, 2024
1 parent 4ffa129 commit 5cc67d7
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 6 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/melpazoid-zk-desktop.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,10 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python 3.9
- name: Set up Python 3.10
uses: actions/setup-python@v1
with: { python-version: 3.9 }
with:
python-version: '3.10'
- name: Install
run: |
python -m pip install --upgrade pip
Expand Down
5 changes: 3 additions & 2 deletions .github/workflows/melpazoid-zk-index.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,10 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python 3.9
- name: Set up Python 3.10
uses: actions/setup-python@v1
with: { python-version: 3.9 }
with:
python-version: '3.10'
- name: Install
run: |
python -m pip install --upgrade pip
Expand Down
5 changes: 3 additions & 2 deletions .github/workflows/melpazoid-zk.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,10 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python 3.9
- name: Set up Python 3.10
uses: actions/setup-python@v1
with: { python-version: 3.9 }
with:
python-version: '3.10'
- name: Install
run: |
python -m pip install --upgrade pip
Expand Down

0 comments on commit 5cc67d7

Please sign in to comment.