From 1c92b5f5bdfc85446bdfb54115bd2e0f39eca169 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat, 11 Mar 2023 21:51:02 +0000 Subject: [PATCH 1/4] Bump python from 3.9-alpine to 3.11-alpine Bumps python from 3.9-alpine to 3.11-alpine. --- updated-dependencies: - dependency-name: python dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 06a4645..7496c17 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM python:3.9-alpine +FROM python:3.11-alpine ENV PYTHONUNBUFFERED 1 ENV PYTHONDONTWRITEBYTECODE 1 From 53d09b1519af7f133a01695363c7522b9f03fd35 Mon Sep 17 00:00:00 2001 From: Aravind Nair <22199259+aravindvnair99@users.noreply.github.com> Date: Sun, 12 Mar 2023 14:39:06 +0530 Subject: [PATCH 2/4] Update CI to 3.11 --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index eaa22cc..facdbaa 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -17,10 +17,10 @@ jobs: - name: Checkout 🛎️ uses: actions/checkout@v3 - - name: Setup Python 3.8 🐍 + - name: Setup Python 3.11 🐍 uses: actions/setup-python@v4 with: - python-version: 3.8 + python-version: 3.11 cache: 'pip' - name: Install Dependencies 📥 From 5408c4cb6c6a0bbbbc5c621fef076a2fc347cd80 Mon Sep 17 00:00:00 2001 From: Aravind Nair <22199259+aravindvnair99@users.noreply.github.com> Date: Sun, 12 Mar 2023 23:52:05 +0530 Subject: [PATCH 3/4] Update CodeQL to Python 3.11 --- .github/workflows/codeql.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/codeql.yml b/.github/workflows/codeql.yml index fd24e97..91513c7 100644 --- a/.github/workflows/codeql.yml +++ b/.github/workflows/codeql.yml @@ -31,10 +31,10 @@ jobs: - name: Checkout 🛎️ uses: actions/checkout@v3 - - name: Setup Python 3.8 🐍 + - name: Setup Python 3.11 🐍 uses: actions/setup-python@v4 with: - python-version: 3.8 + python-version: 3.11 cache: 'pip' - name: Install dependencies 📥 From 0c469d9d6290da5c0b9a2fb2182841c54690c0c7 Mon Sep 17 00:00:00 2001 From: Aravind Nair <22199259+aravindvnair99@users.noreply.github.com> Date: Sun, 12 Mar 2023 23:58:23 +0530 Subject: [PATCH 4/4] Update codestyle to Python 3.11 --- .github/workflows/codestyle.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/codestyle.yml b/.github/workflows/codestyle.yml index 5ac6780..c2b5d18 100644 --- a/.github/workflows/codestyle.yml +++ b/.github/workflows/codestyle.yml @@ -12,10 +12,10 @@ jobs: - name: Checkout 🛎️ uses: actions/checkout@v3 - - name: Setup Python 3.8 🐍 + - name: Setup Python 3.11 🐍 uses: actions/setup-python@v4 with: - python-version: 3.8 + python-version: 3.11 - name: Install Dependencies 📥 run: pip install -r requirements.txt