Skip to content

Commit

Permalink
Merge pull request #273 from gythialy/feature/golang-1.22.2
Browse files Browse the repository at this point in the history
feat: bump golang version to 1.22.2
  • Loading branch information
cpanato committed Apr 5, 2024
2 parents a3b8278 + 1874db1 commit 5105ed1
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/builder.yml
Expand Up @@ -5,10 +5,10 @@ on:
inputs:
builder-tag:
description: golang cross builder tag name
default: v1.22.1-0
default: v1.22.2-0
golang-version:
description: golang version
default: "1.22.1"
default: "1.22.2"
osxcross-git-hash:
description: git commit hash of osx-cross project
default: "ff8d100f3f026b4ffbe4ce96d8aac4ce06f1278b"
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/cron.yaml
Expand Up @@ -23,6 +23,7 @@ jobs:
with:
branch-suffix: random
assignees: gythialy
title: Automated update dependencies by action
- name: Check outputs
if: ${{ steps.cpr.outputs.pull-request-number }}
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/osx-sdk.yaml
Expand Up @@ -7,7 +7,7 @@ jobs:
build:
strategy:
matrix:
os: [macos-11, macos-12, macos-13]
os: [macos-12, macos-13, macos-14]
runs-on: ${{ matrix.os }}
continue-on-error: true
permissions:
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
@@ -1,6 +1,6 @@
ARG OS_CODENAME=bookworm

FROM ghcr.io/gythialy/golang-cross-builder:v1.22.1-0-${OS_CODENAME:-bookworm}
FROM ghcr.io/gythialy/golang-cross-builder:v1.22.2-0-${OS_CODENAME:-bookworm}

LABEL maintainer="Goren G<gythialy.koo+github@gmail.com>"
LABEL org.opencontainers.image.source https://github.com/gythialy/golang-cross
Expand Down
4 changes: 2 additions & 2 deletions Dockerfile.builder
@@ -1,11 +1,11 @@
# golang parameters
ARG GO_VERSION=1.22.1
ARG GO_VERSION=1.22.2
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.1}-${OS_CODENAME:-bookworm} AS base
FROM golang:${GO_VERSION:-1.22.2}-${OS_CODENAME:-bookworm} AS base

# osxcross parameters
ARG OSX_VERSION_MIN=10.13
Expand Down

0 comments on commit 5105ed1

Please sign in to comment.