Skip to content

Commit 495b1fa

Browse files
committed
Update Python to 3.8.3
The actions/setup-python action no longer offers Python 3.8.2, so 3.8.3 must now be used in the CI workflow. It makes sense to use the same Python version to run the action as we do to test it, so the version used in the Docker container is also updated.
1 parent 2634df5 commit 495b1fa

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
@@ -22,7 +22,7 @@ jobs:
2222
- name: Set up Python
2323
uses: actions/setup-python@v1
2424
with:
25-
python-version: '3.8.2'
25+
python-version: '3.8.3'
2626

2727
- name: Install dependencies
2828
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.2
1+
FROM python:3.8.3
22

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

0 commit comments

Comments
 (0)