diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 1bf89ea..2041d5c 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -1,7 +1,7 @@ name: CI env: - go-version: '1.22.4' + go-version: '1.23.2' # Trigger the workflow on all pull requests, and on push to specific branches on: diff --git a/Dockerfile.apiserver b/Dockerfile.apiserver index ee8f0d6..cdbfbff 100644 --- a/Dockerfile.apiserver +++ b/Dockerfile.apiserver @@ -1,4 +1,4 @@ -FROM golang:1.22.4-alpine AS build +FROM golang:1.23.2-alpine AS build WORKDIR /src COPY . . RUN apk add --no-cache gcc musl-dev diff --git a/Dockerfile.collector b/Dockerfile.collector index 97fe437..b5c97fa 100644 --- a/Dockerfile.collector +++ b/Dockerfile.collector @@ -1,4 +1,4 @@ -FROM golang:1.22.4-alpine AS build +FROM golang:1.23.2-alpine AS build WORKDIR /src COPY . . RUN apk add --no-cache gcc musl-dev