From 39a1cac561823b6ace955282be4d291a5100e087 Mon Sep 17 00:00:00 2001 From: Guillaume Vincent Date: Tue, 9 Mar 2021 23:12:40 +0100 Subject: [PATCH] Use python 3.8 on the backend --- .github/workflows/deploy-cli.yml | 4 ++-- .github/workflows/test.yml | 6 +++--- containers/backend/Dockerfile | 2 +- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/deploy-cli.yml b/.github/workflows/deploy-cli.yml index 84d95c5..9a6f8f6 100644 --- a/.github/workflows/deploy-cli.yml +++ b/.github/workflows/deploy-cli.yml @@ -10,7 +10,7 @@ jobs: runs-on: ubuntu-18.04 steps: - uses: actions/checkout@v2 - - uses: actions/setup-python@v1 + - uses: actions/setup-python@v2 with: python-version: "3.6" - name: test cli @@ -22,7 +22,7 @@ jobs: needs: test-cli steps: - uses: actions/checkout@v2 - - uses: actions/setup-python@v1 + - uses: actions/setup-python@v2 with: python-version: "3.6" - name: deploy cli diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 25d27d1..896d874 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -84,7 +84,7 @@ jobs: python-version: [3.6, 3.7, 3.8] steps: - uses: actions/checkout@v2 - - uses: actions/setup-python@v1 + - uses: actions/setup-python@v2 with: python-version: ${{ matrix.python-version }} - name: test cli @@ -96,9 +96,9 @@ jobs: runs-on: ubuntu-18.04 steps: - uses: actions/checkout@v2 - - uses: actions/setup-python@v1 + - uses: actions/setup-python@v2 with: - python-version: "3.6" + python-version: "3.8" - name: test backend run: | cd containers/backend diff --git a/containers/backend/Dockerfile b/containers/backend/Dockerfile index d567873..16dac3f 100644 --- a/containers/backend/Dockerfile +++ b/containers/backend/Dockerfile @@ -1,4 +1,4 @@ -FROM python:3.6 +FROM python:3.8 LABEL maintainer="LessPass " LABEL name="LessPass Backend" RUN mkdir /opt/backend