Update Python to 3.13.7 + pip to 25.2 #315
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Build base images | |
| on: | |
| pull_request: | |
| branches: ["master"] | |
| release: | |
| types: ["published"] | |
| env: | |
| BUILD_TYPE: base | |
| ALPINE_LATEST: "3.22" | |
| DEBIAN_LATEST: "bookworm" | |
| UBUNTU_LATEST: "20.4" | |
| RASPBIAN_LATEST: "bookworm" | |
| PYTHON_LATEST: "3.13" | |
| jobs: | |
| init: | |
| name: Initialize build | |
| runs-on: ubuntu-22.04 | |
| outputs: | |
| architectures_alpine: ${{ steps.info_alpine.outputs.architectures }} | |
| architectures_debian: ${{ steps.info_debian.outputs.architectures }} | |
| architectures_ubuntu: ${{ steps.info_ubuntu.outputs.architectures }} | |
| architectures_raspbian: ${{ steps.info_raspbian.outputs.architectures }} | |
| release: ${{ steps.version.outputs.version }} | |
| steps: | |
| - name: Checkout the repository | |
| uses: actions/checkout@v4.2.2 | |
| with: | |
| fetch-depth: 0 | |
| - name: Get information Alpine | |
| id: info_alpine | |
| uses: home-assistant/actions/helpers/info@master | |
| with: | |
| path: "${{ github.workspace }}/alpine" | |
| - name: Get information Debian | |
| id: info_debian | |
| uses: home-assistant/actions/helpers/info@master | |
| with: | |
| path: "${{ github.workspace }}/debian" | |
| - name: Get information Ubuntu | |
| id: info_ubuntu | |
| uses: home-assistant/actions/helpers/info@master | |
| with: | |
| path: "${{ github.workspace }}/ubuntu" | |
| - name: Get information Raspbian | |
| id: info_raspbian | |
| uses: home-assistant/actions/helpers/info@master | |
| with: | |
| path: "${{ github.workspace }}/raspbian" | |
| - name: Get version | |
| id: version | |
| uses: home-assistant/actions/helpers/version@master | |
| with: | |
| type: ${{ env.BUILD_TYPE }} | |
| build_alpine: | |
| name: Build ${{ matrix.arch }} alpine ${{ matrix.version }} base image | |
| needs: init | |
| runs-on: ubuntu-22.04 | |
| permissions: | |
| contents: read | |
| id-token: write | |
| packages: write | |
| strategy: | |
| matrix: | |
| arch: ${{ fromJson(needs.init.outputs.architectures_alpine) }} | |
| version: ["3.19", "3.20", "3.21", "3.22"] | |
| steps: | |
| - name: Checkout the repository | |
| uses: actions/checkout@v4.2.2 | |
| - name: Login to GitHub Container Registry | |
| if: github.event_name == 'release' | |
| uses: docker/login-action@v3 | |
| with: | |
| registry: ghcr.io | |
| username: ${{ github.repository_owner }} | |
| password: ${{ secrets.GITHUB_TOKEN }} | |
| - name: Set build arguments | |
| shell: bash | |
| run: | | |
| if [[ "${{ github.event_name }}" != "release" ]]; then | |
| echo "BUILD_ARGS=--test" >> $GITHUB_ENV | |
| elif [[ "${{ env.ALPINE_LATEST }}" != "${{ matrix.version }}" ]]; then | |
| echo "BUILD_ARGS=--no-latest" >> $GITHUB_ENV | |
| fi | |
| - name: Build base image | |
| uses: home-assistant/builder@2025.03.0 | |
| with: | |
| args: | | |
| $BUILD_ARGS \ | |
| --${{ matrix.arch }} \ | |
| --target /data/alpine \ | |
| --cosign \ | |
| --release ${{ needs.init.outputs.release }} \ | |
| --base ${{ matrix.version }} | |
| build_debian: | |
| name: Build ${{ matrix.arch }} debian ${{ matrix.version }} base image | |
| needs: init | |
| runs-on: ubuntu-22.04 | |
| permissions: | |
| contents: read | |
| id-token: write | |
| packages: write | |
| strategy: | |
| matrix: | |
| arch: ${{ fromJson(needs.init.outputs.architectures_debian) }} | |
| version: ["bookworm"] | |
| steps: | |
| - name: Checkout the repository | |
| uses: actions/checkout@v4.2.2 | |
| - name: Login to GitHub Container Registry | |
| if: github.event_name == 'release' | |
| uses: docker/login-action@v3 | |
| with: | |
| registry: ghcr.io | |
| username: ${{ github.repository_owner }} | |
| password: ${{ secrets.GITHUB_TOKEN }} | |
| - name: Set build arguments | |
| shell: bash | |
| run: | | |
| if [[ "${{ github.event_name }}" != "release" ]]; then | |
| echo "BUILD_ARGS=--test" >> $GITHUB_ENV | |
| elif [[ "${{ env.DEBIAN_LATEST }}" != "${{ matrix.version }}" ]]; then | |
| echo "BUILD_ARGS=--no-latest" >> $GITHUB_ENV | |
| fi | |
| - name: Build base image | |
| uses: home-assistant/builder@2025.03.0 | |
| with: | |
| args: | | |
| $BUILD_ARGS \ | |
| --${{ matrix.arch }} \ | |
| --target /data/debian \ | |
| --cosign \ | |
| --release ${{ needs.init.outputs.release }} \ | |
| --version-from ${{ matrix.version }}-slim \ | |
| --base ${{ matrix.version }} | |
| build_ubuntu: | |
| name: Build ${{ matrix.arch }} ubuntu ${{ matrix.version }} base image | |
| needs: init | |
| runs-on: ubuntu-22.04 | |
| permissions: | |
| contents: read | |
| id-token: write | |
| packages: write | |
| strategy: | |
| matrix: | |
| arch: ${{ fromJson(needs.init.outputs.architectures_ubuntu) }} | |
| version: ["16.04", "18.04", "20.04"] | |
| steps: | |
| - name: Checkout the repository | |
| uses: actions/checkout@v4.2.2 | |
| - name: Login to GitHub Container Registry | |
| if: github.event_name == 'release' | |
| uses: docker/login-action@v3 | |
| with: | |
| registry: ghcr.io | |
| username: ${{ github.repository_owner }} | |
| password: ${{ secrets.GITHUB_TOKEN }} | |
| - name: Set build arguments | |
| shell: bash | |
| run: | | |
| if [[ "${{ github.event_name }}" != "release" ]]; then | |
| echo "BUILD_ARGS=--test" >> $GITHUB_ENV | |
| elif [[ "${{ env.UBUNTU_LATEST }}" != "${{ matrix.version }}" ]]; then | |
| echo "BUILD_ARGS=--no-latest" >> $GITHUB_ENV | |
| fi | |
| - name: Build base image | |
| uses: home-assistant/builder@2025.03.0 | |
| with: | |
| args: | | |
| $BUILD_ARGS \ | |
| --${{ matrix.arch }} \ | |
| --target /data/ubuntu \ | |
| --cosign \ | |
| --release ${{ needs.init.outputs.release }} \ | |
| --base ${{ matrix.version }} | |
| build_raspbian: | |
| name: Build ${{ matrix.arch }} raspbian ${{ matrix.version }} base image | |
| needs: init | |
| runs-on: ubuntu-22.04 | |
| permissions: | |
| contents: read | |
| id-token: write | |
| packages: write | |
| strategy: | |
| matrix: | |
| arch: ${{ fromJson(needs.init.outputs.architectures_raspbian) }} | |
| version: ["bookworm"] | |
| steps: | |
| - name: Checkout the repository | |
| uses: actions/checkout@v4.2.2 | |
| - name: Login to GitHub Container Registry | |
| if: github.event_name == 'release' | |
| uses: docker/login-action@v3 | |
| with: | |
| registry: ghcr.io | |
| username: ${{ github.repository_owner }} | |
| password: ${{ secrets.GITHUB_TOKEN }} | |
| - name: Set build arguments | |
| shell: bash | |
| run: | | |
| if [[ "${{ github.event_name }}" != "release" ]]; then | |
| echo "BUILD_ARGS=--test" >> $GITHUB_ENV | |
| elif [[ "${{ env.RASPBIAN_LATEST }}" != "${{ matrix.version }}" ]]; then | |
| echo "BUILD_ARGS=--no-latest" >> $GITHUB_ENV | |
| fi | |
| - name: Build base image | |
| uses: home-assistant/builder@2025.03.0 | |
| with: | |
| args: | | |
| $BUILD_ARGS \ | |
| --${{ matrix.arch }} \ | |
| --target /data/raspbian \ | |
| --cosign \ | |
| --release ${{ needs.init.outputs.release }} \ | |
| --version-from ${{ matrix.version }}-slim \ | |
| --base ${{ matrix.version }} | |
| build_python: | |
| name: Build ${{ matrix.arch }} alpine ${{ matrix.version }} - python ${{ matrix.python }} base image | |
| needs: [init, build_alpine] | |
| runs-on: ubuntu-22.04 | |
| permissions: | |
| contents: read | |
| id-token: write | |
| packages: write | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| arch: ${{ fromJson(needs.init.outputs.architectures_alpine) }} | |
| version: ["3.20", "3.21", "3.22"] | |
| python: ["3.11", "3.12", "3.13"] | |
| steps: | |
| - name: Checkout the repository | |
| uses: actions/checkout@v4.2.2 | |
| - name: Login to GitHub Container Registry | |
| if: github.event_name == 'release' | |
| uses: docker/login-action@v3 | |
| with: | |
| registry: ghcr.io | |
| username: ${{ github.repository_owner }} | |
| password: ${{ secrets.GITHUB_TOKEN }} | |
| - name: Set build arguments | |
| shell: bash | |
| run: | | |
| if [[ "${{ github.event_name }}" != "release" ]]; then | |
| echo "BUILD_ARGS=--test" >> $GITHUB_ENV | |
| elif [[ "${{ env.ALPINE_LATEST }}" != "${{ matrix.version }}" ]] || [[ "${{ env.PYTHON_LATEST }}" != "${{ matrix.python }}" ]]; then | |
| echo "BUILD_ARGS=--no-latest" >> $GITHUB_ENV | |
| fi | |
| - name: Build base image | |
| uses: home-assistant/builder@2025.03.0 | |
| with: | |
| args: | | |
| $BUILD_ARGS \ | |
| --${{ matrix.arch }} \ | |
| --target "/data/python/${{ matrix.python }}" \ | |
| --cosign \ | |
| --release ${{ needs.init.outputs.release }} \ | |
| --version-from ${{ matrix.version }} \ | |
| --version ${{ matrix.python }} \ | |
| --base ${{ matrix.python }}-alpine${{ matrix.version }} |