Skip to content

Commit 86dcabd

Browse files
authored
NETOBSERV-1707: move to go 1.22 (#682)
1 parent d02a1ab commit 86dcabd

File tree

6 files changed

+7
-7
lines changed

6 files changed

+7
-7
lines changed

.github/workflows/pull_request.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
- name: check clean vendors
2828
run: go mod vendor
2929
- name: Report coverage
30-
if: ${{ matrix.go == '1.21' }}
30+
if: ${{ matrix.go == '1.22' }}
3131
uses: codecov/codecov-action@v4
3232
with:
3333
files: ./cover.out

.github/workflows/push_image.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
runs-on: ubuntu-latest
1818
strategy:
1919
matrix:
20-
go: ['1.21']
20+
go: ['1.22']
2121
steps:
2222
- name: install make
2323
run: sudo apt-get install make
@@ -61,7 +61,7 @@ jobs:
6161
runs-on: ubuntu-latest
6262
strategy:
6363
matrix:
64-
go: ['1.21']
64+
go: ['1.22']
6565
steps:
6666
- name: install make
6767
run: sudo apt-get install make

.github/workflows/push_image_pr.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
runs-on: ubuntu-latest
1818
strategy:
1919
matrix:
20-
go: ['1.21']
20+
go: ['1.22']
2121
steps:
2222
- name: install make
2323
run: sudo apt-get install make

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
runs-on: ubuntu-latest
1717
strategy:
1818
matrix:
19-
go: ['1.21']
19+
go: ['1.22']
2020
steps:
2121
- name: checkout
2222
uses: actions/checkout@v3

.golangci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ linters:
1818
- unused
1919
linters-settings:
2020
stylecheck:
21-
go: "1.21"
21+
go: "1.22"
2222
gocritic:
2323
enabled-checks:
2424
- hugeParam

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
ARG TARGETPLATFORM=linux/amd64
33
ARG BUILDPLATFORM=linux/amd64
44
# Build the manager binary
5-
FROM --platform=$BUILDPLATFORM docker.io/library/golang:1.21 as builder
5+
FROM --platform=$BUILDPLATFORM docker.io/library/golang:1.22 as builder
66
ARG BUILD_VERSION="unknown"
77

88
ARG TARGETPLATFORM

0 commit comments

Comments
 (0)