Skip to content

Commit a883f04

Browse files
committed
Update runc to v1.3.3
Signed-off-by: Sascha Grunert <sgrunert@redhat.com>
1 parent 2d284e4 commit a883f04

File tree

4 files changed

+14
-14
lines changed

4 files changed

+14
-14
lines changed

dependencies.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,7 @@ dependencies:
138138
match: CRUN_VERSION
139139

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

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.3.2
5+
name: runc-v1.3.3
66
spec:
77
defaultAction: SCMP_ACT_ERRNO
88
architectures:

installation-usage.md

Lines changed: 11 additions & 11 deletions
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.3.2
1598+
baseProfileName: runc-v1.3.3
15991599
syscalls:
16001600
- action: SCMP_ACT_ALLOW
16011601
names:
@@ -1661,7 +1661,7 @@ metadata:
16611661
name: profile1
16621662
spec:
16631663
defaultAction: SCMP_ACT_ERRNO
1664-
baseProfileName: oci://ghcr.io/security-profiles/runc:v1.3.2
1664+
baseProfileName: oci://ghcr.io/security-profiles/runc:v1.3.3
16651665
```
16661666
16671667
The resulting profile `profile1` will then contain all base syscalls from the
@@ -2023,24 +2023,24 @@ The `spoc` client is able to pull security profiles from OCI artifact compatible
20232023
registries. To do that, just run `spoc pull`:
20242024

20252025
```console
2026-
> spoc pull ghcr.io/security-profiles/runc:v1.3.2
2027-
16:32:29.795597 Pulling profile from: ghcr.io/security-profiles/runc:v1.3.2
2026+
> spoc pull ghcr.io/security-profiles/runc:v1.3.3
2027+
16:32:29.795597 Pulling profile from: ghcr.io/security-profiles/runc:v1.3.3
20282028
16:32:29.795610 Verifying signature
20292029
2030-
Verification for ghcr.io/security-profiles/runc:v1.3.2 --
2030+
Verification for ghcr.io/security-profiles/runc:v1.3.3 --
20312031
The following checks were performed on each of these signatures:
20322032
- Existence of the claims in the transparency log was verified offline
20332033
- The code-signing certificate was verified using trusted certificate authority certificates
20342034
20352035
[{"critical":{"identity":{"docker-reference":"ghcr.io/security-profiles/runc"},…}}]
20362036
16:32:33.208695 Creating file store in: /tmp/pull-3199397214
2037-
16:32:33.208713 Verifying reference: ghcr.io/security-profiles/runc:v1.3.2
2037+
16:32:33.208713 Verifying reference: ghcr.io/security-profiles/runc:v1.3.3
20382038
16:32:33.208718 Creating repository for ghcr.io/security-profiles/runc
2039-
16:32:33.208742 Using tag: v1.3.2
2039+
16:32:33.208742 Using tag: v1.3.3
20402040
16:32:33.208743 Copying profile from repository
20412041
16:32:34.119652 Reading profile
20422042
16:32:34.119677 Trying to unmarshal seccomp profile
2043-
16:32:34.120114 Got SeccompProfile: runc-v1.3.2
2043+
16:32:34.120114 Got SeccompProfile: runc-v1.3.3
20442044
16:32:34.120119 Saving profile in: /tmp/profile.yaml
20452045
```
20462046

@@ -2168,15 +2168,15 @@ The Security Profiles Operator will try to pull the correct profile by using
21682168
way, for example if a profile does not support any platform:
21692169

21702170
```
2171-
> spoc pull ghcr.io/security-profiles/runc:v1.3.2
2172-
11:07:14.788840 Pulling profile from: ghcr.io/security-profiles/runc:v1.3.2
2171+
> spoc pull ghcr.io/security-profiles/runc:v1.3.3
2172+
11:07:14.788840 Pulling profile from: ghcr.io/security-profiles/runc:v1.3.3
21732173
11:07:14.788852 Verifying signature
21742174
21752175
11:07:17.559037 Copying profile from repository
21762176
11:07:18.359152 Trying to read profile: profile-linux-amd64.yaml
21772177
11:07:18.359209 Trying to read profile: profile.yaml
21782178
11:07:18.359224 Trying to unmarshal seccomp profile
2179-
11:07:18.359728 Got SeccompProfile: runc-v1.3.2
2179+
11:07:18.359728 Got SeccompProfile: runc-v1.3.3
21802180
11:07:18.359732 Saving profile in: /tmp/profile.yaml
21812181
```
21822182

test/tc_base_profiles_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ import (
2424
)
2525

2626
const (
27-
baseProfileNameRunc = "runc-v1.3.2"
27+
baseProfileNameRunc = "runc-v1.3.3"
2828
baseProfileNameCrun = "crun-v1.24"
2929
)
3030

0 commit comments

Comments
 (0)