Skip to content

Commit feeb309

Browse files
committed
Use Python 3.9.4 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.6, 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.9.4`.
1 parent ef5174b commit feeb309

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

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

+2-2
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,9 @@ jobs:
2424
uses: actions/checkout@v2
2525

2626
- name: Set up Python
27-
uses: actions/setup-python@v1
27+
uses: actions/setup-python@v2
2828
with:
29-
python-version: '3.8.6'
29+
python-version: '3.9.4'
3030

3131
- name: Install dependencies
3232
run: |

Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM python:3.8.6
1+
FROM python:3.9.4
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)