Skip to content

Commit 22c6b00

Browse files
committed
Use Python 3.8.5
The GitHub Actions actions/setup-python action no longer offers Python 3.8.3 so it's necessary to update the CI workflow to use Python 3.8.5. It makes sense to use the same Python version for running the action as is used for testing the action, so I also updated the Docker image to python:3.8.5.
1 parent bd9e77f commit 22c6b00

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.3'
25+
python-version: '3.8.5'
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.3
1+
FROM python:3.8.5
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)