diff --git a/.github/workflows/buildTests.yaml b/.github/workflows/buildTests.yaml index ddf4b06..2d4ec39 100644 --- a/.github/workflows/buildTests.yaml +++ b/.github/workflows/buildTests.yaml @@ -15,7 +15,7 @@ jobs: strategy: fail-fast: false matrix: - go: [ "1.22.4" ] + go: [ "1.22.5" ] steps: - name: Check out code into the Go module directory uses: actions/checkout@v3 diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 73737bd..54f6489 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -17,7 +17,7 @@ on: - created env: - GO_VERSION: "1.22.4" + GO_VERSION: "1.22.5" REPOSITORY: flannel/flannel-cni-plugin jobs: diff --git a/Makefile b/Makefile index 5d5a34c..d5f3a85 100644 --- a/Makefile +++ b/Makefile @@ -21,7 +21,7 @@ else endif # Go version to use for builds. Can be overridden -GOLANG_VERSION?=1.22.4 +GOLANG_VERSION?=1.22.5 build_all: vendor build_all_linux build_windows @echo "All arches should be built for $(TAG)" diff --git a/scripts/version.sh b/scripts/version.sh index 93d5536..8aa33c2 100755 --- a/scripts/version.sh +++ b/scripts/version.sh @@ -34,7 +34,7 @@ PLATFORM=${GOOS}-${GOARCH} RELEASE=${PROG}-${GOARCH} # hardcode versions unless set specifically VERSION=${VERSION:-v1.0.0} -GOLANG_VERSION=${GOLANG_VERSION:-1.22.4} +GOLANG_VERSION=${GOLANG_VERSION:-1.22.5} if [ -d .git ]; then if [ -z "${GIT_TAG}" ]; then