Skip to content

Commit 14cc644

Browse files
authored
Merge pull request #5053 from kolyshkin/misc-bumps
Various version bumps (mostly CI)
2 parents 54d8257 + 68771cf commit 14cc644

File tree

5 files changed

+9
-9
lines changed

5 files changed

+9
-9
lines changed

.cirrus.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@ task:
1111
env:
1212
HOME: /root
1313
CIRRUS_WORKING_DIR: /home/runc
14-
GO_VER_PREFIX: "1.24."
15-
BATS_VERSION: "v1.11.1"
14+
GO_VER_PREFIX: "1.25."
15+
BATS_VERSION: "v1.12.0"
1616
RPMS: gcc git-core iptables jq glibc-static libseccomp-devel make criu fuse-sshfs container-selinux
1717
# yamllint disable rule:key-duplicates
1818
matrix:

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ jobs:
108108
- name: Setup Bats and bats libs
109109
uses: bats-core/bats-action@3.0.1
110110
with:
111-
bats-version: 1.11.1 # Known as BATS_VERSION in other places.
111+
bats-version: 1.12.0 # Known as BATS_VERSION in other places.
112112
support-install: false
113113
assert-install: false
114114
detik-install: false

.github/workflows/validate.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -114,9 +114,9 @@ jobs:
114114
- uses: actions/checkout@v6
115115
- name: install shellcheck
116116
env:
117-
VERSION: v0.10.0
117+
VERSION: v0.11.0
118118
BASEURL: https://github.com/koalaman/shellcheck/releases/download
119-
SHA256: f35ae15a4677945428bdfe61ccc297490d89dd1e544cc06317102637638c6deb
119+
SHA256: 4da528ddb3a4d1b7b24a59d4e16eb2f5fd960f4bd9a3708a15baddbdf1d5a55b
120120
run: |
121121
mkdir ~/bin
122122
curl -sSfL --retry 5 $BASEURL/$VERSION/shellcheck-$VERSION.linux.x86_64.tar.xz |

Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
ARG GO_VERSION=1.24
2-
ARG BATS_VERSION=v1.11.1
3-
ARG LIBSECCOMP_VERSION=2.5.6
1+
ARG GO_VERSION=1.25
2+
ARG BATS_VERSION=v1.12.0
3+
ARG LIBSECCOMP_VERSION=2.6.0
44

55
FROM golang:${GO_VERSION}-bookworm
66
ARG DEBIAN_FRONTEND=noninteractive

script/release_build.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ set -e
1919
## --->
2020
# Project-specific options and functions. In *theory* you shouldn't need to
2121
# touch anything else in this script in order to use this elsewhere.
22-
: "${LIBSECCOMP_VERSION:=2.5.6}"
22+
: "${LIBSECCOMP_VERSION:=2.6.0}"
2323
project="runc"
2424
root="$(readlink -f "$(dirname "${BASH_SOURCE[0]}")/..")"
2525

0 commit comments

Comments
 (0)