Skip to content

Commit f7d638f

Browse files
committed
Use Python 3.8.6 in CI and Docker container
The `actions/setup-python` action used to install Python for use in the CI workflows no longer offers Python 3.8.5, which caused the CI to fail. The action should use the same version of Python it's tested with, so I have also updated the action's Docker image to `python:3.8.6`.
1 parent d64baa9 commit f7d638f

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/workflows/lint-python.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
- name: Set up Python
3636
uses: actions/setup-python@v1
3737
with:
38-
python-version: '3.8.5'
38+
python-version: '3.8.6'
3939

4040
- name: Install flake8
4141
run: |

.github/workflows/test-python.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ jobs:
4040
- name: Set up Python
4141
uses: actions/setup-python@v1
4242
with:
43-
python-version: '3.8.5'
43+
python-version: '3.8.6'
4444

4545
- name: Install dependencies
4646
run: |

Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM python:3.8.5
1+
FROM python:3.8.6
22

33
# Copies your code file from your action repository to the filesystem path `/` of the container
44
COPY compilesketches /compilesketches

0 commit comments

Comments
 (0)