From 7d01c5435d7d6f7c52fde253e03f1e70e567c377 Mon Sep 17 00:00:00 2001 From: per1234 Date: Thu, 15 Oct 2020 17:33:34 -0700 Subject: [PATCH] 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`. --- .github/workflows/libraries_report-size-deltas.yml | 2 +- Dockerfile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/libraries_report-size-deltas.yml b/.github/workflows/libraries_report-size-deltas.yml index 72a8fa6..272ead6 100644 --- a/.github/workflows/libraries_report-size-deltas.yml +++ b/.github/workflows/libraries_report-size-deltas.yml @@ -26,7 +26,7 @@ jobs: - name: Set up Python uses: actions/setup-python@v1 with: - python-version: '3.8.5' + python-version: '3.8.6' - name: Install dependencies run: | diff --git a/Dockerfile b/Dockerfile index ba3580e..48855fc 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM python:3.8.5 +FROM python:3.8.6 # Copies your code file from your action repository to the filesystem path `/` of the container COPY reportsizedeltas /reportsizedeltas