Skip to content

Commit 8d2f779

Browse files
authored
go1.23 -> go1.24 (#29)
1 parent f86adde commit 8d2f779

File tree

6 files changed

+15
-14
lines changed

6 files changed

+15
-14
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
test:
1111
runs-on: ubuntu-latest
1212
container:
13-
image: ghcr.io/bcdevices/scm-go-usb-arm:v1.21.1-jammy-2
13+
image: ghcr.io/bcdevices/scm-go-usb-arm:v1.23.4-jammy-1
1414
steps:
1515
- name: Checkout code
1616
uses: actions/checkout@v4
@@ -21,7 +21,7 @@ jobs:
2121
build-linux-amd64:
2222
runs-on: ubuntu-latest
2323
container:
24-
image: ghcr.io/bcdevices/scm-go-usb-arm:v1.21.1-jammy-2
24+
image: ghcr.io/bcdevices/scm-go-usb-arm:v1.23.4-jammy-1
2525
steps:
2626
- name: Checkout code
2727
uses: actions/checkout@v4
@@ -32,7 +32,7 @@ jobs:
3232
build-linux-arm64:
3333
runs-on: ubuntu-latest
3434
container:
35-
image: ghcr.io/bcdevices/scm-go-usb-arm:v1.21.1-jammy-2
35+
image: ghcr.io/bcdevices/scm-go-usb-arm:v1.23.4-jammy-1
3636
steps:
3737
- name: Checkout code
3838
uses: actions/checkout@v4

.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: 5 additions & 5 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,12 +24,12 @@ 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'; \
28-
sha256='6924efde5de86fe277676e929dc9917d466efa02fb934197bc2eba35d5680971'; \
27+
url='https://dl.google.com/go/go1.24.1.linux-amd64.tar.gz'; \
28+
sha256='cb2396bae64183cdccf81a9a6df0aea3bce9511fc21469fb89a0c00470088073'; \
2929
;; \
3030
'arm64') \
31-
url='https://dl.google.com/go/go1.23.4.linux-arm64.tar.gz'; \
32-
sha256='16e5017863a7f6071363782b1b8042eb12c6ca4f4cd71528b2123f0a1275b13e'; \
31+
url='https://dl.google.com/go/go1.24.1.linux-arm64.tar.gz'; \
32+
sha256='8df5750ffc0281017fb6070fba450f5d22b600a02081dceef47966ffaf36a3af'; \
3333
;; \
3434
*) echo >&2 "error: unsupported architecture '$arch' (likely packaging update needed)"; exit 1 ;; \
3535
esac; \

elixir/Dockerfile

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,10 @@
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"
6-
ARG GOLANG_DOWNLOAD_SHA256_amd64="6924efde5de86fe277676e929dc9917d466efa02fb934197bc2eba35d5680971"
7-
ARG GOLANG_DOWNLOAD_SHA256_arm64="16e5017863a7f6071363782b1b8042eb12c6ca4f4cd71528b2123f0a1275b13e"
5+
ARG GOLANG_VERSION="1.24.1"
6+
7+
ARG GOLANG_DOWNLOAD_SHA256_amd64="cb2396bae64183cdccf81a9a6df0aea3bce9511fc21469fb89a0c00470088073"
8+
ARG GOLANG_DOWNLOAD_SHA256_arm64="8df5750ffc0281017fb6070fba450f5d22b600a02081dceef47966ffaf36a3af"
89
# Container host platform, set automatically by `docker build`
910
ARG TARGETPLATFORM="linux/amd64"
1011

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)