Skip to content

Commit 8f0a0f4

Browse files
committed
Bump runc to v1.4.1 and crun to 1.27
Signed-off-by: Sascha Grunert <sgrunert@redhat.com>
1 parent f06aa86 commit 8f0a0f4

6 files changed

Lines changed: 8 additions & 8 deletions

File tree

dependencies.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ dependencies:
128128
match: VERSION
129129

130130
- name: crun
131-
version: 1.25.1
131+
version: 1.27
132132
refPaths:
133133
- path: examples/baseprofile-crun.yaml
134134
match: name
@@ -138,7 +138,7 @@ dependencies:
138138
match: CRUN_VERSION
139139

140140
- name: runc
141-
version: v1.4.0
141+
version: v1.4.1
142142
refPaths:
143143
- path: examples/baseprofile-runc.yaml
144144
match: name

examples/baseprofile-crun.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
apiVersion: security-profiles-operator.x-k8s.io/v1beta1
33
kind: SeccompProfile
44
metadata:
5-
name: crun-v1.25.1
5+
name: crun-v1.27
66
spec:
77
defaultAction: SCMP_ACT_ERRNO
88
architectures:

examples/baseprofile-runc.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
apiVersion: security-profiles-operator.x-k8s.io/v1beta1
33
kind: SeccompProfile
44
metadata:
5-
name: runc-v1.4.0
5+
name: runc-v1.4.1
66
spec:
77
defaultAction: SCMP_ACT_ERRNO
88
architectures:

hack/install-crun

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/usr/bin/env bash
22
set -euox pipefail
33

4-
CRUN_VERSION=1.25.1
4+
CRUN_VERSION=1.27
55
CRUN_BIN=/tmp/crun
66

77
# Current crun version

installation-usage.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1595,7 +1595,7 @@ metadata:
15951595
name: profile1
15961596
spec:
15971597
defaultAction: SCMP_ACT_ERRNO
1598-
baseProfileName: runc-v1.4.0
1598+
baseProfileName: runc-v1.4.1
15991599
syscalls:
16001600
- action: SCMP_ACT_ALLOW
16011601
names:

test/tc_base_profiles_test.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,8 @@ import (
2424
)
2525

2626
const (
27-
baseProfileNameRunc = "runc-v1.4.0"
28-
baseProfileNameCrun = "crun-v1.25.1"
27+
baseProfileNameRunc = "runc-v1.4.1"
28+
baseProfileNameCrun = "crun-v1.27"
2929
)
3030

3131
func (e *e2e) testCaseBaseProfile([]string) {

0 commit comments

Comments
 (0)