ci: bump bats to 1.11.1

Bump bats to the version from Fedora 42 (used in "fedora" job), so we
have the same version everywhere.

This also fixes an issue introduced by commit d31e6b87 (which forgot to
bump bats in GHA CI), and adds a note to the yaml in order to avoid the
same issue in the future.

Signed-off-by: Kir Kolyshkin <kolyshkin@gmail.com>
This commit is contained in:
Kir Kolyshkin
2025-10-16 12:02:01 -07:00
parent d34ea2bc06
commit 6af1d637ba
3 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -12,7 +12,7 @@ task:
HOME: /root
CIRRUS_WORKING_DIR: /home/runc
GO_VER_PREFIX: "1.24."
BATS_VERSION: "v1.11.0"
BATS_VERSION: "v1.11.1"
RPMS: gcc git-core iptables jq glibc-static libseccomp-devel make criu fuse-sshfs container-selinux
# yamllint disable rule:key-duplicates
matrix:
+1 -1
View File
@@ -107,7 +107,7 @@ jobs:
- name: Setup Bats and bats libs
uses: bats-core/bats-action@3.0.1
with:
bats-version: 1.9.0
bats-version: 1.11.1 # Known as BATS_VERSION in other places.
support-install: false
assert-install: false
detik-install: false
+1 -1
View File
@@ -1,5 +1,5 @@
ARG GO_VERSION=1.24
ARG BATS_VERSION=v1.11.0
ARG BATS_VERSION=v1.11.1
ARG LIBSECCOMP_VERSION=2.5.6
FROM golang:${GO_VERSION}-bookworm