chore(deps): update debian:trixie docker digest to 3352c2e (stable/2026.1) #615
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 | |
| on: | |
| pull_request: | |
| workflow_dispatch: | |
| push: | |
| branches: | |
| - main | |
| - stable/** | |
| permissions: | |
| contents: read | |
| jobs: | |
| image: | |
| name: ${{ matrix.name }} | |
| runs-on: ubuntu-latest | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| include: | |
| - name: ubuntu | |
| image-name: python-base-ubuntu | |
| from: ubuntu:24.04@sha256:186072bba1b2f436cbb91ef2567abca677337cfc786c86e107d25b7072feef0c | |
| - name: ubuntu-cloud-archive | |
| image-name: python-base-ubuntu-cloud-archive | |
| from: ghcr.io/vexxhost/ubuntu-cloud-archive:2026.1@sha256:93c309cf74f7a83055902d91e98c6e5eb2a71aba9b129dd063451be1dbf92dac | |
| - name: ubuntu-cloud-archive-legacy | |
| image-name: python-base | |
| from: ghcr.io/vexxhost/ubuntu-cloud-archive:2026.1@sha256:93c309cf74f7a83055902d91e98c6e5eb2a71aba9b129dd063451be1dbf92dac | |
| - name: debian | |
| image-name: python-base-debian | |
| from: debian:trixie@sha256:3352c2e13876c8a5c5873ef20870e1939e73cb9a3c1aeba5e3e72172a85ce9ed | |
| - name: rockylinux | |
| image-name: python-base-rockylinux | |
| from: rockylinux/rockylinux:10@sha256:f4da504c18e7aced902f4f728cde787cd9d9b817bc639fe171026d18364dca6c | |
| - name: almalinux | |
| image-name: python-base-almalinux | |
| from: almalinux:10@sha256:8f50403cd881731ec5153321b2536d1bc18b1fe44f197dc09d9e1d527c151e2d | |
| permissions: | |
| contents: read | |
| id-token: write | |
| packages: write | |
| pull-requests: write | |
| steps: | |
| - name: Harden the runner (Audit all outbound calls) | |
| uses: step-security/harden-runner@58077d3c7e43986b6b15fba718e8ea69e387dfcc # v2.15.1 | |
| with: | |
| egress-policy: audit | |
| - uses: vexxhost/docker-atmosphere/.github/actions/build-image@9dc904e06dcde958bf8a0b3230715d32b9e3a85f # main | |
| with: | |
| image-name: ${{ matrix.image-name }} | |
| build-args: FROM=${{ matrix.from }} | |
| push: ${{ github.event_name != 'pull_request' }} |