From 49f7d70a869c50244ce2b1ca45fc4ca577d345fe Mon Sep 17 00:00:00 2001 From: Goren G Date: Thu, 8 Aug 2024 11:07:31 +0800 Subject: [PATCH] feat: bump golang version to 1.22.6 Signed-off-by: Goren G --- .github/workflows/builder.yml | 4 ++-- Dockerfile | 2 +- Dockerfile.builder | 4 ++-- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/builder.yml b/.github/workflows/builder.yml index 5625d58..807a027 100644 --- a/.github/workflows/builder.yml +++ b/.github/workflows/builder.yml @@ -5,10 +5,10 @@ on: inputs: builder-tag: description: golang cross builder tag name - default: v1.22.5-0 + default: v1.22.6-0 golang-version: description: golang version - default: "1.22.5" + default: "1.22.6" osxcross-git-hash: description: git commit hash of osx-cross project default: "ff8d100f3f026b4ffbe4ce96d8aac4ce06f1278b" diff --git a/Dockerfile b/Dockerfile index b83bf8a..99f687d 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,6 +1,6 @@ ARG OS_CODENAME=bookworm -FROM ghcr.io/gythialy/golang-cross-builder:v1.22.5-0-${OS_CODENAME:-bookworm} +FROM ghcr.io/gythialy/golang-cross-builder:v1.22.6-0-${OS_CODENAME:-bookworm} LABEL maintainer="Goren G" LABEL org.opencontainers.image.source https://github.com/gythialy/golang-cross diff --git a/Dockerfile.builder b/Dockerfile.builder index c62910b..a89fca0 100644 --- a/Dockerfile.builder +++ b/Dockerfile.builder @@ -1,11 +1,11 @@ # golang parameters -ARG GO_VERSION=1.22.5 +ARG GO_VERSION=1.22.6 ARG OS_CODENAME=bookworm ARG OSK_SDK=macos-13 FROM ghcr.io/gythialy/osx-sdk:${OSK_SDK:-macos-13} AS osx-sdk -FROM golang:${GO_VERSION:-1.22.5}-${OS_CODENAME:-bookworm} AS base +FROM golang:${GO_VERSION:-1.22.6}-${OS_CODENAME:-bookworm} AS base # osxcross parameters ARG OSX_VERSION_MIN=10.13