Skip to content

chore(deps): update almalinux docker tag to v10 (stable/2025.1) #149

chore(deps): update almalinux docker tag to v10 (stable/2025.1)

chore(deps): update almalinux docker tag to v10 (stable/2025.1) #149

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
- name: ubuntu-cloud-archive
image-name: python-base-ubuntu-cloud-archive
from: ghcr.io/vexxhost/ubuntu-cloud-archive:2025.1@sha256:8908e9e220767bc5f62c79a92a0675986f9df4cda809fefa1401d812f708ac14
- name: ubuntu-cloud-archive-legacy
image-name: python-base
from: ghcr.io/vexxhost/ubuntu-cloud-archive:2025.1@sha256:8908e9e220767bc5f62c79a92a0675986f9df4cda809fefa1401d812f708ac14
- name: debian
image-name: python-base-debian
from: debian:trixie
- name: rockylinux
image-name: python-base-rockylinux
from: rockylinux:9
- 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' }}