Merge pull request #5053 from kolyshkin/misc-bumps

Various version bumps (mostly CI)
This commit is contained in:
Akihiro Suda
2025-12-04 08:19:30 +09:00
committed by GitHub
5 changed files with 9 additions and 9 deletions
+2 -2
View File
@@ -11,8 +11,8 @@ task:
env:
HOME: /root
CIRRUS_WORKING_DIR: /home/runc
GO_VER_PREFIX: "1.24."
BATS_VERSION: "v1.11.1"
GO_VER_PREFIX: "1.25."
BATS_VERSION: "v1.12.0"
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
@@ -108,7 +108,7 @@ jobs:
- name: Setup Bats and bats libs
uses: bats-core/bats-action@3.0.1
with:
bats-version: 1.11.1 # Known as BATS_VERSION in other places.
bats-version: 1.12.0 # Known as BATS_VERSION in other places.
support-install: false
assert-install: false
detik-install: false
+2 -2
View File
@@ -114,9 +114,9 @@ jobs:
- uses: actions/checkout@v6
- name: install shellcheck
env:
VERSION: v0.10.0
VERSION: v0.11.0
BASEURL: https://github.com/koalaman/shellcheck/releases/download
SHA256: f35ae15a4677945428bdfe61ccc297490d89dd1e544cc06317102637638c6deb
SHA256: 4da528ddb3a4d1b7b24a59d4e16eb2f5fd960f4bd9a3708a15baddbdf1d5a55b
run: |
mkdir ~/bin
curl -sSfL --retry 5 $BASEURL/$VERSION/shellcheck-$VERSION.linux.x86_64.tar.xz |
+3 -3
View File
@@ -1,6 +1,6 @@
ARG GO_VERSION=1.24
ARG BATS_VERSION=v1.11.1
ARG LIBSECCOMP_VERSION=2.5.6
ARG GO_VERSION=1.25
ARG BATS_VERSION=v1.12.0
ARG LIBSECCOMP_VERSION=2.6.0
FROM golang:${GO_VERSION}-bookworm
ARG DEBIAN_FRONTEND=noninteractive
+1 -1
View File
@@ -19,7 +19,7 @@ set -e
## --->
# Project-specific options and functions. In *theory* you shouldn't need to
# touch anything else in this script in order to use this elsewhere.
: "${LIBSECCOMP_VERSION:=2.5.6}"
: "${LIBSECCOMP_VERSION:=2.6.0}"
project="runc"
root="$(readlink -f "$(dirname "${BASH_SOURCE[0]}")/..")"