From 39398997a64bc6d1be3f4f51d1bbd1bdb26e62b1 Mon Sep 17 00:00:00 2001 From: Lunar Renovate <115620512+lunar-renovate@users.noreply.github.com> Date: Thu, 11 Apr 2024 10:22:00 +0200 Subject: [PATCH] Update golang Docker tag to v1.22.2 (#97) --- .github/workflows/build.yml | 2 +- .github/workflows/release.yml | 2 +- Dockerfile | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index d3157f7..e90eead 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -17,7 +17,7 @@ jobs: - name: Set up Go uses: actions/setup-go@v5 with: - go-version: 1.20.0 + go-version: 1.22.2 - name: Cache Go modules uses: actions/cache@v4 with: diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index aff0ddb..0efce02 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -19,7 +19,7 @@ jobs: - name: Set up Go uses: actions/setup-go@v5 with: - go-version: 1.20.0 + go-version: 1.22.2 - name: Cache Go modules uses: actions/cache@v4 with: diff --git a/Dockerfile b/Dockerfile index 448839b..bfd93de 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM golang:1.22.1 as builder +FROM golang:1.22.2 as builder WORKDIR /src ENV CGO_ENABLED=0