Skip to content

Commit 0604fda

Browse files
authored
chore(deps): update go to 1.23 (#13613)
Signed-off-by: william.vanhevelingen <william.vanhevelingen@acquia.com>
1 parent 8a5c4de commit 0604fda

File tree

7 files changed

+11
-11
lines changed

7 files changed

+11
-11
lines changed

.devcontainer/devcontainer.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"appPort": 8080,
44
"features": {
55
"ghcr.io/devcontainers/features/go:1": {
6-
"version": "1.22"
6+
"version": "1.23"
77
},
88
"ghcr.io/devcontainers/features/node:1": {
99
"version": "20"

.github/workflows/ci-build.yaml

+5-5
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ jobs:
114114
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
115115
- uses: actions/setup-go@0c52d547c9bc32b1aa3301fd7a9cb496313a4491 # v5.0.0
116116
with:
117-
go-version: "1.22"
117+
go-version: "1.23"
118118
cache: true
119119
- run: make test STATIC_FILES=false GOTEST='go test -p 20 -covermode=atomic -coverprofile=coverage.out'
120120
- name: Upload coverage report
@@ -136,7 +136,7 @@ jobs:
136136
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
137137
- uses: actions/setup-go@0c52d547c9bc32b1aa3301fd7a9cb496313a4491 # v5.0.0
138138
with:
139-
go-version: "1.22"
139+
go-version: "1.23"
140140
cache: true
141141
# windows run does not use makefile target because it does a lot more than just testing and is not cross-platform compatible
142142
- run: go test -p 20 -covermode=atomic -coverprofile='coverage.out' $(go list ./... | select-string -Pattern 'github.com/argoproj/argo-workflows/v3/workflow/controller' , 'github.com/argoproj/argo-workflows/v3/server' -NotMatch)
@@ -242,7 +242,7 @@ jobs:
242242
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
243243
- uses: actions/setup-go@0c52d547c9bc32b1aa3301fd7a9cb496313a4491 # v5.0.0
244244
with:
245-
go-version: "1.22"
245+
go-version: "1.23"
246246
cache: true
247247
- name: Install Java for the SDK
248248
if: ${{matrix.test == 'test-java-sdk'}}
@@ -375,7 +375,7 @@ jobs:
375375
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
376376
- uses: actions/setup-go@0c52d547c9bc32b1aa3301fd7a9cb496313a4491 # v5.0.0
377377
with:
378-
go-version: "1.22"
378+
go-version: "1.23"
379379
cache: true
380380
- name: Install protoc
381381
run: |
@@ -412,7 +412,7 @@ jobs:
412412
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
413413
- uses: actions/setup-go@0c52d547c9bc32b1aa3301fd7a9cb496313a4491 # v5.0.0
414414
with:
415-
go-version: "1.22"
415+
go-version: "1.23"
416416
cache: true
417417
- run: make lint STATIC_FILES=false
418418
# if lint makes changes that are not in the PR, fail the build

.github/workflows/docs.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
python-version: 3.9
2626
- uses: actions/setup-go@0c52d547c9bc32b1aa3301fd7a9cb496313a4491 # v5.0.0
2727
with:
28-
go-version: '1.22'
28+
go-version: '1.23'
2929
- uses: actions/setup-node@b39b52d1213e96004bfcb1c61a8a6fa8ab84f3e8 # v4.0.1
3030
with:
3131
node-version: "19"

.github/workflows/release.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -291,7 +291,7 @@ jobs:
291291
node-version: "20" # change in all GH Workflows
292292
- uses: actions/setup-go@0c52d547c9bc32b1aa3301fd7a9cb496313a4491 # v5.0.0
293293
with:
294-
go-version: "1.22"
294+
go-version: "1.23"
295295
- name: Restore node packages cache
296296
uses: actions/cache@ab5e6d0c87105b4c9c2047343972218f562e4319 # v4.0.1
297297
with:

Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ ARG GIT_COMMIT=unknown
33
ARG GIT_TAG=unknown
44
ARG GIT_TREE_STATE=unknown
55

6-
FROM golang:1.22-alpine3.19 as builder
6+
FROM golang:1.23-alpine3.19 as builder
77

88
# libc-dev to build openapi-gen
99
RUN apk update && apk add --no-cache \

Dockerfile.windows

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ ARG GIT_TREE_STATE=unknown
1111

1212
# had issues with official golange image for windows so I'm using plain servercore
1313
FROM mcr.microsoft.com/windows/servercore:${IMAGE_OS_VERSION} as builder
14-
ENV GOLANG_VERSION=1.22
14+
ENV GOLANG_VERSION=1.23
1515
SHELL ["powershell", "-Command"]
1616

1717
# install chocolatey package manager

go.mod

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module github.com/argoproj/argo-workflows/v3
22

3-
go 1.22.5
3+
go 1.23.1
44

55
require (
66
cloud.google.com/go/storage v1.36.0

0 commit comments

Comments
 (0)