From d3c72a1783b45b647d96eb584b3c643e42e13f52 Mon Sep 17 00:00:00 2001 From: PatrickMenoti <82882574+PatrickMenoti@users.noreply.github.com> Date: Fri, 5 Jul 2024 09:56:42 -0300 Subject: [PATCH] refactor: update golang version --- .github/workflows/deploy_prod.yml | 2 +- .github/workflows/deploy_stage.yml | 2 +- .github/workflows/generate_docs.yml | 2 +- .github/workflows/package-audit.yaml | 2 +- .github/workflows/test_and_build.yml | 2 +- .github/workflows/test_vulcan.yml | 2 +- Dockerfile | 2 +- Makefile | 2 +- go.mod | 2 +- 9 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.github/workflows/deploy_prod.yml b/.github/workflows/deploy_prod.yml index 1ad87ae21..aef04200e 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 9e0403c98..fdcfd78c1 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 50cfaaa17..9a99a111a 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 22b5bb849..b1f3aec2d 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 7f528d739..6c11132fb 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 a4b47dca5..ef27c4cd1 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 6096bbcbc..50f46ec46 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 5a40a8176..fdc864ffb 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 aa8418102..8546ce699 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