You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: .github/workflows/validate.yml
+3-6Lines changed: 3 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -153,12 +153,9 @@ jobs:
153
153
- name: no toolchain in go.mod # See https://github.com/opencontainers/runc/pull/4717, https://github.com/dependabot/dependabot-core/issues/11933.
154
154
run: |
155
155
if grep -q '^toolchain ' go.mod; then echo "Error: go.mod must not have toolchain directive, please fix"; exit 1; fi
156
-
# FIXME: This check needed to be disabled for the go-selinux patch addded
157
-
# when patching CVE-2025-52881. This needs to be removed as soon as
158
-
# the embargo is lifted, along with the replace directive in go.mod.
159
-
#- name: no exclude nor replace in go.mod
160
-
# run: |
161
-
# if grep -Eq '^\s*(exclude|replace) ' go.mod; then echo "Error: go.mod must not have exclude/replace directive, it breaks go install. Please fix"; exit 1; fi
156
+
- name: no exclude nor replace in go.mod
157
+
run: |
158
+
if grep -Eq '^\s*(exclude|replace) ' go.mod; then echo "Error: go.mod must not have exclude/replace directive, it breaks go install. Please fix"; exit 1; fi
0 commit comments