Skip to content

Commit

Permalink
refactor: update golang version
Browse files Browse the repository at this point in the history
  • Loading branch information
PatrickMenoti committed Jul 5, 2024
1 parent b93f348 commit d3c72a1
Show file tree
Hide file tree
Showing 9 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/deploy_prod.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/deploy_stage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/generate_docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/package-audit.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test_and_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test_vulcan.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM golang:1.22.4
FROM golang:1.22.5

WORKDIR /go/src/app

Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -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
Expand Down

0 comments on commit d3c72a1

Please sign in to comment.