diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml deleted file mode 100644 index c0f1aa0..0000000 --- a/.github/workflows/go.yml +++ /dev/null @@ -1,28 +0,0 @@ -# This workflow will build a golang project -# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-go - -name: Go - -on: - push: - branches: [ "master" ] - pull_request: - branches: [ "master" ] - -jobs: - - build: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v4 - - - name: Set up Go - uses: actions/setup-go@v4 - with: - go-version: '1.22' - - - name: Build - run: go build -v ./... - - - name: Test - run: go test -v ./... diff --git a/cmd/version.go b/cmd/version.go index 0d14833..de785fd 100644 --- a/cmd/version.go +++ b/cmd/version.go @@ -24,7 +24,7 @@ import ( // ReleaseVersion is the release version of the codebase. // Usually overridden by tag names when building binaries. -var ReleaseVersion = "local build (latest release 1.36.3)" +var ReleaseVersion = "local build (latest release 1.36.4)" // versionCmd represents the version command. var versionCmd = &cobra.Command{