Skip to content

Commit

Permalink
Merge pull request #278 from estesp/update-go
Browse files Browse the repository at this point in the history
Update Go and Alpine versions
  • Loading branch information
estesp authored Dec 12, 2024
2 parents d36059c + c6537ce commit 8f23245
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 11 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:

strategy:
matrix:
go-version: [1.23.3]
go-version: [1.23.4]
os: [ubuntu-22.04, macos-14, windows-2019]

steps:
Expand Down Expand Up @@ -62,7 +62,7 @@ jobs:
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: '1.23.3'
go-version: '1.23.4'

- name: Set env
shell: bash
Expand Down Expand Up @@ -107,7 +107,7 @@ jobs:
steps:
- uses: actions/setup-go@v5
with:
go-version: '1.23.3'
go-version: '1.23.4'

- name: Set env
shell: bash
Expand Down Expand Up @@ -137,7 +137,7 @@ jobs:
steps:
- uses: actions/setup-go@v5
with:
go-version: '1.23.3'
go-version: '1.23.4'

- name: Set env
shell: bash
Expand Down Expand Up @@ -182,7 +182,7 @@ jobs:
steps:
- uses: actions/setup-go@v5
with:
go-version: '1.23.3'
go-version: '1.23.4'

- name: Set env
shell: bash
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ jobs:
- name: Install Go
uses: actions/setup-go@v5
with:
go-version: '1.23.3'
go-version: '1.23.4'

- name: Set env
shell: bash
Expand Down Expand Up @@ -151,7 +151,7 @@ jobs:
- name: Install Go
uses: actions/setup-go@v5
with:
go-version: '1.23.3'
go-version: '1.23.4'

- name: Set env
shell: bash
Expand Down Expand Up @@ -195,7 +195,7 @@ jobs:
- name: Install Go
uses: actions/setup-go@v5
with:
go-version: '1.23.3'
go-version: '1.23.4'

- name: Set env
shell: bash
Expand Down
4 changes: 2 additions & 2 deletions hack/Dockerfile.alpine
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM --platform=$BUILDPLATFORM golang:1.23.3-alpine AS bld
FROM --platform=$BUILDPLATFORM golang:1.23.4-alpine AS bld
ARG TARGETPLATFORM
ARG TARGETARCH
ARG TARGETVARIANT
Expand Down Expand Up @@ -27,7 +27,7 @@ WORKDIR /manifest-tool
COPY . /manifest-tool
RUN /manifest-tool/hack/makestatic.sh $TARGETARCH ${TARGETVARIANT#v}

FROM --platform=$TARGETPLATFORM alpine:3.20.3
FROM --platform=$TARGETPLATFORM alpine:3.21.0
COPY --from=bld /manifest-tool/manifest-tool /manifest-tool
COPY --from=bld /etc/ssl/certs/ca-certificates.crt /etc/ssl/certs/ca-certificates.crt
COPY --from=bld --chown=0:0 /go/bin/docker-credential-gcr /usr/bin/docker-credential-gcloud
Expand Down
2 changes: 1 addition & 1 deletion hack/Dockerfile.linux
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM --platform=$BUILDPLATFORM golang:1.23.3-alpine AS bld
FROM --platform=$BUILDPLATFORM golang:1.23.4-alpine AS bld
ARG TARGETPLATFORM
ARG TARGETARCH
ARG TARGETVARIANT
Expand Down

0 comments on commit 8f23245

Please sign in to comment.