Skip to content

Commit 5296c05

Browse files
mreisekarlpip
authored andcommitted
update go version
Signed-off-by: Moedinger, Marcus (415) <marcus.moedinger@mercedes-benz.com>
1 parent ea9cdd9 commit 5296c05

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

.github/workflows/foss-scan.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
- uses: actions/setup-go@v3
2323
continue-on-error: true
2424
with:
25-
go-version: '^1.20'
25+
go-version: '^1.22'
2626
- name: build binary
2727
run: |
2828
go build -v

.github/workflows/govulncheck.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
- uses: actions/checkout@v2
2424
- uses: actions/setup-go@v2
2525
with:
26-
go-version: '^1.20.3'
26+
go-version: '^1.22'
2727
- name: Run govulncheck
2828
run: |
2929
go install golang.org/x/vuln/cmd/govulncheck@latest

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
- run: git fetch --force --tags
2222
- uses: actions/setup-go@v3
2323
with:
24-
go-version: '^1.20'
24+
go-version: '^1.22'
2525
- name: Docker Login
2626
uses: docker/login-action@v3
2727
with:

.github/workflows/run-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
- uses: actions/checkout@v3
2727
- uses: actions/setup-go@v3
2828
with:
29-
go-version: '^1.20.1'
29+
go-version: '^1.22'
3030
- name: Create config and sbom file
3131
run: |
3232
echo $CONFIG | base64 -d > conf.yml

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
#
33
# SPDX-License-Identifier: MIT
44

5-
FROM golang:1.20-alpine as builder
5+
FROM golang:1.22-alpine as builder
66
WORKDIR /cli
77

88
COPY go.mod go.sum ./

0 commit comments

Comments
 (0)