Skip to content

fix(deps): update dependency astral-sh/uv (0.12.0 → 0.12.1) (#1681) #140

fix(deps): update dependency astral-sh/uv (0.12.0 → 0.12.1) (#1681)

fix(deps): update dependency astral-sh/uv (0.12.0 → 0.12.1) (#1681) #140

name: "Python 3.12.x: Build & Push Container Image"
on:
push:
branches:
- main
paths:
- 'base-python/3.12.Dockerfile'
- '.github/workflows/build-container.yml'
- '.github/workflows/build-base-python-3.12.yml'
permissions:
contents: read
packages: write
jobs:
get-version:
runs-on: ubuntu-24.04
outputs:
python: ${{ steps.python_version.outputs.PYTHON_VERSION }}
steps:
- name: Checkout repository
uses: actions/checkout@d23441a48e516b6c34aea4fa41551a30e30af803 # v6
- name: Get Python version
id: python_version
run: |
echo "PYTHON_VERSION=$(grep -E '^FROM docker.io/library/python:[0-9]+\.[0-9]+\.[0-9]+' base-python/3.12.Dockerfile | sed -E 's|.*python:([0-9]+\.[0-9]+\.[0-9]+).*|\1|')" >> $GITHUB_OUTPUT
call-build-workflow:
name: Build & Push
needs: get-version
uses: erhardtconsulting/images/.github/workflows/build-container.yml@main
with:
image: "base-python"
dockerfile: "3.12.Dockerfile"
tag: ${{ needs.get-version.outputs.python }}
latest: true
push: true
push-docker: false
push-quay: false
secrets: inherit