ci: update Fedora base images to Fedora 43

Also update to typos 1.38.1.
This commit is contained in:
Brad King
2025-10-29 16:29:41 -04:00
parent 373e8ea652
commit 5219f383fe
15 changed files with 4 additions and 4 deletions

View File

@@ -1,6 +1,6 @@
# syntax=docker/dockerfile:1
ARG BASE_IMAGE=fedora:42
ARG BASE_IMAGE=fedora:43
FROM ${BASE_IMAGE} AS dnf-cache
LABEL maintainer="Brad King <brad.king@kitware.com>"

View File

@@ -1,6 +1,6 @@
# syntax=docker/dockerfile:1
ARG BASE_IMAGE=fedora:42
ARG BASE_IMAGE=fedora:43
FROM ${BASE_IMAGE} AS dnf-cache
# Populate DNF cache w/ the fresh metadata and prefetch packages.

View File

@@ -2,7 +2,7 @@
set -e
typos_version=1.36.1
typos_version=1.38.1
cargo install --root /usr/local --version "$typos_version" typos-cli
strip /usr/local/bin/typos

View File

@@ -5,6 +5,6 @@ set -e
dnf install -y $(grep '^[^#]\+$' /root/deps_packages.lst)
# Remove tests for Python packages
for v in 3.13; do
for v in 3.14; do
find /usr/lib64/python${v}/site-packages -type d -a -name tests -exec rm -rf {} +
done