Skip to content

Commit

Permalink
refactor: update golang patch
Browse files Browse the repository at this point in the history
  • Loading branch information
PatrickMenoti committed Jan 29, 2025
1 parent ca947dd commit e3b5776
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.5
image: golang:1.22.11
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.5
image: golang:1.22.11
env:
CGO_ENABLED: 0 # Statically linked

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/e2e_test.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.5
image: golang:1.22.11
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.5
image: golang:1.22.11
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.5
image: golang:1.22.11
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.5
image: golang:1.22.11

steps:
- name: Setting GIT
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.5
FROM golang:1.22.11

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.5 before continuing")
$(error "No go binary found in your system, please install go 1.22.11 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.5
go 1.22.11

require (
github.com/AlecAivazis/survey/v2 v2.3.7
Expand Down

0 comments on commit e3b5776

Please sign in to comment.