Skip to content

Commit 9baf499

Browse files
authored
Merge pull request #5376 from kolyshkin/seccomp-261
build: bump libseccomp to v2.6.1
2 parents fc89fbd + ea0c849 commit 9baf499

4 files changed

Lines changed: 6 additions & 2 deletions

File tree

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1010
- The poststart hooks are now executed after starting the user-specified
1111
process, fixing a runtime-spec conformance issue. (#4347, #5186)
1212

13+
### Changed ###
14+
- Updated builds to libseccomp v2.6.1. (#5376)
15+
1316
## [1.5.0] - 2026-06-19
1417

1518
> Why do we even have that lever?!

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
ARG GO_VERSION=1.25
22
ARG BATS_VERSION=v1.12.0
3-
ARG LIBSECCOMP_VERSION=2.6.0
3+
ARG LIBSECCOMP_VERSION=2.6.1
44
ARG LIBPATHRS_VERSION=0.2.5
55

66
FROM golang:${GO_VERSION}-trixie

script/build-seccomp.sh

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ declare -A SECCOMP_SHA256=(
1010
["2.5.5"]=248a2c8a4d9b9858aa6baf52712c34afefcf9c9e94b76dce02c1c9aa25fb3375
1111
["2.5.6"]=04c37d72965dce218a0c94519b056e1775cf786b5260ee2b7992956c4ee38633
1212
["2.6.0"]=83b6085232d1588c379dc9b9cae47bb37407cf262e6e74993c61ba72d2a784dc
13+
["2.6.1"]=501f66c667225d53791b97e1d7cf85ab764c297d04881f60f38f451c4b0ee1be
1314
)
1415

1516
# Due to libseccomp being LGPL we must include its sources,

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.6.0}"
22+
: "${LIBSECCOMP_VERSION:=2.6.1}"
2323
: "${LIBPATHRS_VERSION:=0.2.5}"
2424
project="runc"
2525
root="$(readlink -f "$(dirname "${BASH_SOURCE[0]}")/..")"

0 commit comments

Comments
 (0)