Skip to content

Commit b2534d2

Browse files
committed
go1.23 -> go1.24
1 parent f86adde commit b2534d2

File tree

5 files changed

+7
-7
lines changed

5 files changed

+7
-7
lines changed

.tool-versions

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
elixir 1.14.1-otp-25
2-
golang 1.23.4
2+
golang 1.24.1
33
golangci-lint 1.51.2
44
nerves-system-br 1.20.6
55
reviewdog 0.14.1

Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
ARG BUILDPACK_HOSTOS="jammy"
33
FROM buildpack-deps:${BUILDPACK_HOSTOS}-scm
44

5-
ENV GOLANG_VERSION="1.23.4"
5+
ENV GOLANG_VERSION="1.24.1"
66

77
# hadolint ignore=DL3008
88
RUN set -eux; \
@@ -24,11 +24,11 @@ RUN set -eux; \
2424
url=; \
2525
case "$arch" in \
2626
'amd64') \
27-
url='https://dl.google.com/go/go1.23.4.linux-amd64.tar.gz'; \
27+
url='https://dl.google.com/go/go1.24.1.linux-amd64.tar.gz'; \
2828
sha256='6924efde5de86fe277676e929dc9917d466efa02fb934197bc2eba35d5680971'; \
2929
;; \
3030
'arm64') \
31-
url='https://dl.google.com/go/go1.23.4.linux-arm64.tar.gz'; \
31+
url='https://dl.google.com/go/go1.24.1.linux-arm64.tar.gz'; \
3232
sha256='16e5017863a7f6071363782b1b8042eb12c6ca4f4cd71528b2123f0a1275b13e'; \
3333
;; \
3434
*) echo >&2 "error: unsupported architecture '$arch' (likely packaging update needed)"; exit 1 ;; \

elixir/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
ARG NERVES_SYSTEM_BR_VERSION="1.20.6"
33
FROM nervesproject/nerves_system_br:${NERVES_SYSTEM_BR_VERSION}
44
ARG ELIXIR_VERSION="1.14.1-otp-25"
5-
ARG GOLANG_VERSION="1.23.4"
5+
ARG GOLANG_VERSION="1.24.1"
66
ARG GOLANG_DOWNLOAD_SHA256_amd64="6924efde5de86fe277676e929dc9917d466efa02fb934197bc2eba35d5680971"
77
ARG GOLANG_DOWNLOAD_SHA256_arm64="16e5017863a7f6071363782b1b8042eb12c6ca4f4cd71528b2123f0a1275b13e"
88
# Container host platform, set automatically by `docker build`

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
module github.com/bcdevices/scm-go-usb
22

3-
go 1.20
3+
go 1.24
44

55
require github.com/google/gousb v1.1.2

lint/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# scm-go-usb-lint: Alpine-based reviewdog-golangci image with libusb support.
2-
ARG GOLANG_VERSION="1.23.4"
2+
ARG GOLANG_VERSION="1.24.1"
33
FROM golang:${GOLANG_VERSION}-alpine
44
ARG GOLANGCI_LINT_VERSION="1.51.2"
55
ARG REVIEWDOG_VERSION="0.14.1"

0 commit comments

Comments
 (0)