diff --git a/.github/workflows/validate.yml b/.github/workflows/validate.yml index ec175ea5b..466a71d51 100644 --- a/.github/workflows/validate.yml +++ b/.github/workflows/validate.yml @@ -36,9 +36,12 @@ jobs: # Check that go fmt ./... produces a zero diff; clean up any changes afterwards. go fmt ./... && git diff --exit-code; code=$?; git checkout -- .; (exit $code) # Check that go fix ./... produces a zero diff; clean up any changes afterwards. - go fix ./... && git diff --exit-code; code=$?; git checkout -- .; (exit $code) + # + # Renable this after https://github.com/golang/go/commit/7fd62ba821b1044e8e4077df052b0a1232672d57 + # has been released. + # go fix ./... && git diff --exit-code; code=$?; git checkout -- .; (exit $code) - name: validate spec run: | sudo make spec-install - make spec \ No newline at end of file + make spec diff --git a/go.mod b/go.mod index c0b21447e..bc25fc72b 100644 --- a/go.mod +++ b/go.mod @@ -1,6 +1,6 @@ module github.com/go-vela/server -go 1.21 +go 1.21.9 require ( github.com/Bose/minisentinel v0.0.0-20200130220412-917c5a9223bb