Skip to content

Commit

Permalink
tooling: golang 1.23.4
Browse files Browse the repository at this point in the history
  • Loading branch information
IvoBCD committed Dec 14, 2024
1 parent a15c715 commit 98200fc
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion .tool-versions
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
elixir 1.14.1-otp-25
golang 1.21.1
golang 1.23.4
golangci-lint 1.51.2
nerves-system-br 1.20.6
reviewdog 0.14.1
10 changes: 5 additions & 5 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
ARG BUILDPACK_HOSTOS="jammy"
FROM buildpack-deps:${BUILDPACK_HOSTOS}-scm

ENV GOLANG_VERSION="1.21.1"
ENV GOLANG_VERSION="1.23.4"

# hadolint ignore=DL3008
RUN set -eux; \
Expand All @@ -24,12 +24,12 @@ RUN set -eux; \
url=; \
case "$arch" in \
'amd64') \
url='https://dl.google.com/go/go1.21.1.linux-amd64.tar.gz'; \
sha256='b3075ae1ce5dab85f89bc7905d1632de23ca196bd8336afd93fa97434cfa55ae'; \
url='https://dl.google.com/go/go1.23.4.linux-amd64.tar.gz'; \
sha256='6924efde5de86fe277676e929dc9917d466efa02fb934197bc2eba35d5680971'; \
;; \
'arm64') \
url='https://dl.google.com/go/go1.21.1.linux-arm64.tar.gz'; \
sha256='7da1a3936a928fd0b2602ed4f3ef535b8cd1990f1503b8d3e1acc0fa0759c967'; \
url='https://dl.google.com/go/go1.23.4.linux-arm64.tar.gz'; \
sha256='16e5017863a7f6071363782b1b8042eb12c6ca4f4cd71528b2123f0a1275b13e'; \
;; \
*) echo >&2 "error: unsupported architecture '$arch' (likely packaging update needed)"; exit 1 ;; \
esac; \
Expand Down
6 changes: 3 additions & 3 deletions elixir/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@
ARG NERVES_SYSTEM_BR_VERSION="1.20.6"
FROM nervesproject/nerves_system_br:${NERVES_SYSTEM_BR_VERSION}
ARG ELIXIR_VERSION="1.14.1-otp-25"
ARG GOLANG_VERSION="1.21.1"
ARG GOLANG_DOWNLOAD_SHA256_amd64="000a5b1fca4f75895f78befeb2eecf10bfff3c428597f3f1e69133b63b911b02"
ARG GOLANG_DOWNLOAD_SHA256_arm64="5e5e2926733595e6f3c5b5ad1089afac11c1490351855e87849d0e7702b1ec2e"
ARG GOLANG_VERSION="1.23.4"
ARG GOLANG_DOWNLOAD_SHA256_amd64="6924efde5de86fe277676e929dc9917d466efa02fb934197bc2eba35d5680971"
ARG GOLANG_DOWNLOAD_SHA256_arm64="16e5017863a7f6071363782b1b8042eb12c6ca4f4cd71528b2123f0a1275b13e"
# Container host platform, set automatically by `docker build`
ARG TARGETPLATFORM="linux/amd64"

Expand Down
2 changes: 1 addition & 1 deletion lint/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# scm-go-usb-lint: Alpine-based reviewdog-golangci image with libusb support.
ARG GOLANG_VERSION="1.21.1"
ARG GOLANG_VERSION="1.23.4"
FROM golang:${GOLANG_VERSION}-alpine
ARG GOLANGCI_LINT_VERSION="1.51.2"
ARG REVIEWDOG_VERSION="0.14.1"
Expand Down

0 comments on commit 98200fc

Please sign in to comment.