Skip to content

Commit 3d741ff

Browse files
committed
change python version to 3.8
1 parent 0a8510b commit 3d741ff

File tree

3 files changed

+9
-9
lines changed

3 files changed

+9
-9
lines changed

.github/workflows/deploy-to-production.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -35,10 +35,10 @@ jobs:
3535
with:
3636
fetch-depth: 0
3737
persist-credentials: false
38-
- name: Set up Python 3.7
39-
uses: actions/setup-python@v1
38+
- name: Set up Python 3.8
39+
uses: actions/setup-python@v2
4040
with:
41-
python-version: 3.7
41+
python-version: 3.8
4242
- name: Install dependencies
4343
run: |
4444
python -m pip install --upgrade pip

.github/workflows/deploy-to-staging.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -29,10 +29,10 @@ jobs:
2929
- uses: actions/checkout@v2
3030
with:
3131
fetch-depth: 0
32-
- name: Set up Python 3.7
33-
uses: actions/setup-python@v1
32+
- name: Set up Python 3.8
33+
uses: actions/setup-python@v2
3434
with:
35-
python-version: 3.7
35+
python-version: 3.8
3636
- name: Install dependencies
3737
run: |
3838
python -m pip install --upgrade pip

.github/workflows/test-pull-requests.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,10 @@ jobs:
99

1010
steps:
1111
- uses: actions/checkout@v1
12-
- name: Set up Python 3.7
13-
uses: actions/setup-python@v1
12+
- name: Set up Python 3.8
13+
uses: actions/setup-python@v2
1414
with:
15-
python-version: 3.7
15+
python-version: 3.8
1616
- name: Install dependencies
1717
run: |
1818
python -m pip install --upgrade pip

0 commit comments

Comments
 (0)