Skip to content

Commit 9a1a1de

Browse files
committed
Fix Python version in the action
1 parent 7fbd5f2 commit 9a1a1de

File tree

2 files changed

+3
-11
lines changed

2 files changed

+3
-11
lines changed

.github/workflows/production.yml

Lines changed: 3 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -14,19 +14,14 @@ jobs:
1414
build:
1515
# The type of runner that the job will run on
1616
runs-on: ubuntu-latest
17-
strategy:
18-
matrix:
19-
python-version: [3.6]
20-
2117

2218
# Steps represent a sequence of tasks that will be executed as part of the job
2319
steps:
2420
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
25-
- uses: actions/checkout@v2
26-
- name: Set up Python ${{ matrix.python-version }}
27-
uses: actions/setup-python@v2
21+
- name: Set up Python 3.10
22+
uses: actions/setup-python@v4
2823
with:
29-
python-version: ${{ matrix.python-version }}
24+
python-version: '3.10'
3025
- name: Install dependencies
3126
run: |
3227
apt-get update && apt-get install -y python-dev

.github/workflows/productionDeploy.yml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,6 @@ jobs:
77
build:
88
# The type of runner that the job will run on
99
runs-on: ubuntu-latest
10-
strategy:
11-
matrix:
12-
python-version: [3.6]
1310

1411
# Steps represent a sequence of tasks that will be executed as part of the job
1512
steps:

0 commit comments

Comments
 (0)