Skip to content

chore(deps): update almalinux docker tag to v10 (main) #136

chore(deps): update almalinux docker tag to v10 (main)

chore(deps): update almalinux docker tag to v10 (main) #136

Workflow file for this run

name: build
on:
pull_request:
workflow_dispatch:
push:
branches:
- main
- stable/**
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:cd1dba651b3080c3686ecf4e3c4220f026b521fb76978881737d24f200828b2b
- name: ubuntu-cloud-archive
image-name: python-base-ubuntu-cloud-archive
from: ghcr.io/vexxhost/ubuntu-cloud-archive:main@sha256:de1f31c2017c1928ec9c8f5f22c00cc4779a4f303b1ca647072fcd12b5184d90
- name: ubuntu-cloud-archive-legacy
image-name: python-base
from: ghcr.io/vexxhost/ubuntu-cloud-archive:main@sha256:de1f31c2017c1928ec9c8f5f22c00cc4779a4f303b1ca647072fcd12b5184d90
- name: debian
image-name: python-base-debian
from: debian:trixie@sha256:5cf544fad978371b3df255b61e209b373583cb88b733475c86e49faa15ac2104
- name: rockylinux
image-name: python-base-rockylinux
from: rockylinux:9@sha256:d7be1c094cc5845ee815d4632fe377514ee6ebcf8efaed6892889657e5ddaaa6
- name: almalinux
image-name: python-base-almalinux
from: almalinux:10@sha256:dfbeddfba8989f69432ad652530e5ba98713914696420a262a6c12ebe912806a
permissions:
contents: read
id-token: write
packages: write
pull-requests: write
steps:
- uses: vexxhost/docker-atmosphere/.github/actions/build-image@main
with:
image-name: ${{ matrix.image-name }}
build-args: FROM=${{ matrix.from }}
push: ${{ github.event_name != 'pull_request' }}