diff --git a/.github/workflows/deploy_prod.yml b/.github/workflows/deploy_prod.yml index 1ad87ae2..aef04200 100644 --- a/.github/workflows/deploy_prod.yml +++ b/.github/workflows/deploy_prod.yml @@ -10,7 +10,7 @@ jobs: build: runs-on: ubuntu-latest container: - image: golang:1.22.4 + image: golang:1.22.5 outputs: binver: ${{ steps.binversion.outputs.BIN_VERSION }} env: diff --git a/.github/workflows/deploy_stage.yml b/.github/workflows/deploy_stage.yml index 9e0403c9..fdcfd78c 100644 --- a/.github/workflows/deploy_stage.yml +++ b/.github/workflows/deploy_stage.yml @@ -10,7 +10,7 @@ jobs: build: runs-on: ubuntu-latest container: - image: golang:1.22.4 + image: golang:1.22.5 env: CGO_ENABLED: 0 # Statically linked diff --git a/.github/workflows/generate_docs.yml b/.github/workflows/generate_docs.yml index 50cfaaa1..9a99a111 100644 --- a/.github/workflows/generate_docs.yml +++ b/.github/workflows/generate_docs.yml @@ -10,7 +10,7 @@ jobs: build: runs-on: ubuntu-latest container: - image: golang:1.22.4 + image: golang:1.22.5 env: CGO_ENABLED: 0 # Statically linked diff --git a/.github/workflows/package-audit.yaml b/.github/workflows/package-audit.yaml index 22b5bb84..b1f3aec2 100644 --- a/.github/workflows/package-audit.yaml +++ b/.github/workflows/package-audit.yaml @@ -9,7 +9,7 @@ jobs: name: Package Auditor (GoVulnCheck) runs-on: ubuntu-latest container: - image: golang:1.22.4 + image: golang:1.22.5 steps: - name: Checkout Repository uses: actions/checkout@v3 diff --git a/.github/workflows/test_and_build.yml b/.github/workflows/test_and_build.yml index 7f528d73..6c11132f 100644 --- a/.github/workflows/test_and_build.yml +++ b/.github/workflows/test_and_build.yml @@ -10,7 +10,7 @@ jobs: build: runs-on: ubuntu-latest container: - image: golang:1.22.4 + image: golang:1.22.5 steps: - name: Setting GIT diff --git a/.github/workflows/test_vulcan.yml b/.github/workflows/test_vulcan.yml index a4b47dca..ef27c4cd 100644 --- a/.github/workflows/test_vulcan.yml +++ b/.github/workflows/test_vulcan.yml @@ -10,7 +10,7 @@ jobs: build: runs-on: ubuntu-latest container: - image: golang:1.22.4 + image: golang:1.22.5 env: CGO_ENABLED: 0 # Statically linked diff --git a/Dockerfile b/Dockerfile index 6096bbcb..50f46ec4 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM golang:1.22.4 +FROM golang:1.22.5 WORKDIR /go/src/app diff --git a/Makefile b/Makefile index 5a40a817..fdc864ff 100644 --- a/Makefile +++ b/Makefile @@ -4,7 +4,7 @@ SHELL := env PATH=$(PATH) /bin/bash NAME := azion ifeq (, $(GO)) -$(error "No go binary found in your system, please install go 1.22.4 before continuing") +$(error "No go binary found in your system, please install go 1.22.5 before continuing") endif GOPATH ?= $(shell $(GO) env GOPATH) diff --git a/go.mod b/go.mod index aa841810..8546ce69 100644 --- a/go.mod +++ b/go.mod @@ -1,6 +1,6 @@ module github.com/aziontech/azion-cli -go 1.22.4 +go 1.22.5 require ( github.com/AlecAivazis/survey/v2 v2.3.7