diff --git a/.github/workflows/validate.yml b/.github/workflows/validate.yml index d530180..9d47bf0 100644 --- a/.github/workflows/validate.yml +++ b/.github/workflows/validate.yml @@ -11,27 +11,24 @@ jobs: validate: runs-on: ubuntu-latest steps: - - name: clone - uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 - - - name: install go - uses: actions/setup-go@cdcb36043654635271a94b9a6d1392de5bb323a7 # v5.0.1 - with: - # use version from go.mod file - go-version-file: 'go.mod' - cache: true - check-latest: true + - name: clone + uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 - - name: validate - run: | - # Check that go mod tidy produces a zero diff; clean up any changes afterwards. - go mod tidy && git diff --exit-code; code=$?; git checkout -- .; (exit $code) - # Check that go vet ./... produces a zero diff; clean up any changes afterwards. - go vet ./... && git diff --exit-code; code=$?; git checkout -- .; (exit $code) - # 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. - # - # 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: install go + uses: actions/setup-go@cdcb36043654635271a94b9a6d1392de5bb323a7 # v5.0.1 + with: + # use version from go.mod file + go-version-file: "go.mod" + cache: true + check-latest: true + + - name: validate + run: | + # Check that go mod tidy produces a zero diff; clean up any changes afterwards. + go mod tidy && git diff --exit-code; code=$?; git checkout -- .; (exit $code) + # Check that go vet ./... produces a zero diff; clean up any changes afterwards. + go vet ./... && git diff --exit-code; code=$?; git checkout -- .; (exit $code) + # 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) diff --git a/go.mod b/go.mod index 1ac3b6a..ce02d30 100644 --- a/go.mod +++ b/go.mod @@ -1,8 +1,6 @@ module github.com/go-vela/sdk-go -go 1.22.0 - -toolchain go1.22.4 +go 1.23.1 require ( github.com/buildkite/yaml v0.0.0-20230306222819-0e4e032d4835