Merge pull request #4727 from askervin/5aY_fix_invalid_workflow

Fix "invalid workflow file" github actions error
This commit is contained in:
Kir Kolyshkin
2025-04-17 11:54:04 -07:00
committed by GitHub
+2 -1
View File
@@ -145,7 +145,8 @@ jobs:
- name: verify deps
run: make verify-dependencies
- name: no toolchain in go.mod # See https://github.com/opencontainers/runc/pull/4717, https://github.com/dependabot/dependabot-core/issues/11933.
run: if grep -q '^toolchain ' go.mod; then echo "Error: go.mod must not have toolchain directive, please fix"; exit 1; fi
run: |
if grep -q '^toolchain ' go.mod; then echo "Error: go.mod must not have toolchain directive, please fix"; exit 1; fi
commit: