From ed4bbfdbdb0460ba86d2165bf6cfe44befe1af74 Mon Sep 17 00:00:00 2001 From: Kacper Sawicki Date: Wed, 28 Feb 2024 10:41:57 +0100 Subject: [PATCH] Update go version --- .github/workflows/ci.yaml | 2 +- Dockerfile.apiserver | 2 +- Dockerfile.collector | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index cb2b42a..75c0eee 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -1,7 +1,7 @@ name: CI env: - go-version: '1.21.1' + go-version: '1.21.7' # Trigger the workflow on all pull requests, and on push to specific branches on: diff --git a/Dockerfile.apiserver b/Dockerfile.apiserver index e03571d..84d0cc8 100644 --- a/Dockerfile.apiserver +++ b/Dockerfile.apiserver @@ -1,4 +1,4 @@ -FROM golang:1.21.5-alpine3.17 AS build +FROM golang:1.21.7-alpine3.17 AS build WORKDIR /src COPY . . RUN apk add --no-cache gcc musl-dev diff --git a/Dockerfile.collector b/Dockerfile.collector index 2d16067..b9afdb1 100644 --- a/Dockerfile.collector +++ b/Dockerfile.collector @@ -1,4 +1,4 @@ -FROM golang:1.21.5-alpine3.17 AS build +FROM golang:1.21.7-alpine3.17 AS build WORKDIR /src COPY . . RUN apk add --no-cache gcc musl-dev