Skip to content

Commit 7d01c54

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 6b3c07d commit 7d01c54

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/libraries_report-size-deltas.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
- name: Set up Python
2727
uses: actions/setup-python@v1
2828
with:
29-
python-version: '3.8.5'
29+
python-version: '3.8.6'
3030

3131
- name: Install dependencies
3232
run: |

Dockerfile

Lines changed: 1 addition & 1 deletion
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 reportsizedeltas /reportsizedeltas

0 commit comments

Comments
 (0)