Skip to content

Commit efc1093

Browse files
authored
Updating workflows to work with go1.23.4 (#207)
1 parent d024649 commit efc1093

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

.github/workflows/code-analysis.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
- name: Set up Go
2121
uses: actions/setup-go@v3
2222
with:
23-
go-version: 1.22.0
23+
go-version: 1.23.0
2424

2525
- name: Set up Git credentials for Go
2626
run: |

.github/workflows/host-agent-deb-apt.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ jobs:
5959
if: ${{ github.actor != 'nektos/act' }}
6060
uses: actions/setup-go@v4
6161
with:
62-
go-version: 1.22.1
62+
go-version: 1.23.4
6363

6464
- name: Set up Git credentials for Go
6565
run: |

.github/workflows/host-agent-rpm.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ jobs:
7474
- name: Set up Go
7575
uses: actions/setup-go@v4
7676
with:
77-
go-version: 1.22.1
77+
go-version: 1.23.4
7878
cache: false
7979

8080
- name: Set up Git credentials for Go

Dockerfiles/DockerfileKube

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM golang:1.22.2 AS build
1+
FROM golang:1.23.4 AS build
22
WORKDIR /app
33
RUN apt-get update && apt-get install -y ca-certificates openssl
44
RUN update-ca-certificates

Dockerfiles/DockerfileLinux

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM golang:1.22.2 AS build
1+
FROM golang:1.23.4 AS build
22
RUN apt-get update && apt-get install -y ca-certificates openssl git openssh-client
33

44
RUN update-ca-certificates

0 commit comments

Comments
 (0)