Skip to content

Commit

Permalink
chore(go): specific go version (#1101)
Browse files Browse the repository at this point in the history
  • Loading branch information
wass3rw3rk committed Apr 11, 2024
1 parent 1058d96 commit 4fea679
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/validate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
make spec
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -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
Expand Down

0 comments on commit 4fea679

Please sign in to comment.