File tree Expand file tree Collapse file tree 3 files changed +11
-11
lines changed Expand file tree Collapse file tree 3 files changed +11
-11
lines changed Original file line number Diff line number Diff line change 5
5
inputs :
6
6
builder-tag :
7
7
description : golang cross builder tag name
8
- default : v1.24.4 -0
8
+ default : v1.24.5 -0
9
9
golang-version :
10
10
description : golang version
11
- default : " 1.24.4 "
11
+ default : " 1.24.5 "
12
12
osxcross-git-hash :
13
13
description : git commit hash of osx-cross project
14
14
default : " ff8d100f3f026b4ffbe4ce96d8aac4ce06f1278b"
Original file line number Diff line number Diff line change 1
1
ARG OS_CODENAME=bookworm
2
2
3
- FROM ghcr.io/gythialy/golang-cross-builder:v1.24.4 -0-${OS_CODENAME:-bookworm}
3
+ FROM ghcr.io/gythialy/golang-cross-builder:v1.24.5 -0-${OS_CODENAME:-bookworm}
4
4
5
5
LABEL maintainer="Goren G<gythialy.koo+github@gmail.com>"
6
6
LABEL org.opencontainers.image.source https://github.com/gythialy/golang-cross
7
7
8
8
COPY entrypoint.sh /
9
9
10
10
# install cosign
11
- ARG COSIGN_VERSION=v2.5.0
12
- ARG COSIGN_SHA=1f6c194dd0891eb345b436bb71ff9f996768355f5e0ce02dde88567029ac2188
11
+ ARG COSIGN_VERSION=v2.5.2
12
+ ARG COSIGN_SHA=bcfeae05557a9f313ee4392d2f335d0ff69ebbfd232019e3736fb04999fe1734
13
13
RUN \
14
14
COSIGN_DOWNLOAD_FILE=cosign-linux-amd64 && \
15
15
wget -O $COSIGN_DOWNLOAD_FILE https://github.com/sigstore/cosign/releases/download/${COSIGN_VERSION}/${COSIGN_DOWNLOAD_FILE} && \
19
19
cosign version
20
20
21
21
# install syft
22
- ARG SYFT_VERSION=v1.23.1
23
- ARG SYFT_SHA=42f3e01b64f054d0caee42073cb94e3ac3e61be6f0100e7ecda96e6a2abf7e22
22
+ ARG SYFT_VERSION=v1.28.0
23
+ ARG SYFT_SHA=3edee7fe1ceb1f78360e547f57048930d57f00c7ec3d0b8bdfb902805f048468
24
24
RUN \
25
25
SYFT_DOWNLOAD_FILE=syft_${SYFT_VERSION#v}_linux_amd64.tar.gz && \
26
26
SYFT_DOWNLOAD_URL=https://github.com/anchore/syft/releases/download/${SYFT_VERSION}/${SYFT_DOWNLOAD_FILE} && \
42
42
go version
43
43
44
44
# install goreleaser
45
- ARG GORELEASER_VERSION=v2.9 .0
46
- ARG GORELEASER_SHA=a066fcd713684abed0d750d7559f1a5d794fa2faa8e8f1ad2eecec8c373668a7
45
+ ARG GORELEASER_VERSION=v2.11 .0
46
+ ARG GORELEASER_SHA=da8383cb2e1e848372a337922333ec883b8607c2ba70a2a68a0f33022fb7ebfd
47
47
# RUN \
48
48
# wget https://github.com/goreleaser/goreleaser/releases/download/$GORELEASER_VERSION/checksums.txt.pem && \
49
49
# cosign verify-blob --certificate checksums.txt.pem --signature https://github.com/goreleaser/goreleaser/releases/download/$GORELEASER_VERSION/checksums.txt.sig https://github.com/goreleaser/goreleaser/releases/download/$GORELEASER_VERSION/checksums.txt && \
Original file line number Diff line number Diff line change 1
1
# golang parameters
2
- ARG GO_VERSION = 1.24 . 4
2
+ ARG GO_VERSION = 1.24 . 5
3
3
ARG OS_CODENAME = bookworm
4
4
ARG OSK_SDK = macos -13
5
5
6
6
FROM ghcr . io /gythialy /osx -sdk :${ OSK_SDK :-macos -13 } AS osx -sdk
7
7
8
- FROM golang :${ GO_VERSION :-1.24 . 4 } -${ OS_CODENAME :-bookworm } AS base
8
+ FROM golang :${ GO_VERSION :-1.24 . 5 } -${ OS_CODENAME :-bookworm } AS base
9
9
10
10
# osxcross parameters
11
11
ARG OSX_VERSION_MIN = 10.13
You can’t perform that action at this time.
0 commit comments