From 7ca04c04e511e718fdf0991df4388d09e1399157 Mon Sep 17 00:00:00 2001 From: Nikhil Badyal Date: Fri, 25 Aug 2023 19:32:12 +0530 Subject: [PATCH 1/2] =?UTF-8?q?=F0=9F=8E=A8=20Updated=20action?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/dockerhub-base.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/dockerhub-base.yml b/.github/workflows/dockerhub-base.yml index 3bb6a0a..5308a6c 100644 --- a/.github/workflows/dockerhub-base.yml +++ b/.github/workflows/dockerhub-base.yml @@ -9,7 +9,9 @@ concurrency: jobs: dockerhub-push: uses: nikhilbadyal/ghactions/.github/workflows/dockerhub-push.yml@main + with: + IMAGE_TAG: ${{ github.repository }}-base:latest + FILE: Dockerfile-base secrets: DOCKERHUB_USERNAME: ${{ secrets.DOCKERHUB_USERNAME }} DOCKERHUB_TOKEN: ${{ secrets.DOCKERHUB_TOKEN }} - FILE: Dockerfile-base From 0f1fff01c2f686df5fe75217ab271ee46d2cddc5 Mon Sep 17 00:00:00 2001 From: Nikhil Badyal Date: Fri, 25 Aug 2023 19:40:30 +0530 Subject: [PATCH 2/2] =?UTF-8?q?=F0=9F=8E=A8=20Updated=20python=20version?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/newapp-check.yml | 2 +- .github/workflows/pre-commit.yml | 2 +- Dockerfile-base | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/newapp-check.yml b/.github/workflows/newapp-check.yml index 6883cc0..dbbfca3 100644 --- a/.github/workflows/newapp-check.yml +++ b/.github/workflows/newapp-check.yml @@ -22,7 +22,7 @@ jobs: - name: setup python uses: actions/setup-python@main with: - python-version: '3.11' + python-version: '3.11.4' - name: Install Requirements run: | diff --git a/.github/workflows/pre-commit.yml b/.github/workflows/pre-commit.yml index e0c275b..ef87098 100644 --- a/.github/workflows/pre-commit.yml +++ b/.github/workflows/pre-commit.yml @@ -15,4 +15,4 @@ jobs: secrets: GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} with: - PYTHON_VERSION: '3.11' + PYTHON_VERSION: '3.11.4' diff --git a/Dockerfile-base b/Dockerfile-base index 4e9431c..3502400 100644 --- a/Dockerfile-base +++ b/Dockerfile-base @@ -1,5 +1,5 @@ # Use a specific version of the base Python image -ARG PYTHON_VERSION=3.11-slim-bullseye +ARG PYTHON_VERSION=3.11.4-slim-bullseye FROM python:${PYTHON_VERSION} AS python