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
@@ -152,12 +152,9 @@ jobs:
152
152
- name: no toolchain in go.mod # See https://github.com/opencontainers/runc/pull/4717, https://github.com/dependabot/dependabot-core/issues/11933.
153
153
run: |
154
154
if grep -q '^toolchain ' go.mod; then echo "Error: go.mod must not have toolchain directive, please fix"; exit 1; fi
155
-
# FIXME: This check needed to be disabled for the go-selinux patch addded
156
-
# when patching CVE-2025-52881. This needs to be removed as soon as
157
-
# the embargo is lifted, along with the replace directive in go.mod.
158
-
#- name: no exclude nor replace in go.mod
159
-
# run: |
160
-
# 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
155
+
- name: no exclude nor replace in go.mod
156
+
run: |
157
+
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