Skip to content

Commit 630d29a

Browse files
committed
sha
1 parent b2534d2 commit 630d29a

File tree

3 files changed

+8
-7
lines changed

3 files changed

+8
-7
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

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,11 +25,11 @@ RUN set -eux; \
2525
case "$arch" in \
2626
'amd64') \
2727
url='https://dl.google.com/go/go1.24.1.linux-amd64.tar.gz'; \
28-
sha256='6924efde5de86fe277676e929dc9917d466efa02fb934197bc2eba35d5680971'; \
28+
sha256='cb2396bae64183cdccf81a9a6df0aea3bce9511fc21469fb89a0c00470088073'; \
2929
;; \
3030
'arm64') \
3131
url='https://dl.google.com/go/go1.24.1.linux-arm64.tar.gz'; \
32-
sha256='16e5017863a7f6071363782b1b8042eb12c6ca4f4cd71528b2123f0a1275b13e'; \
32+
sha256='8df5750ffc0281017fb6070fba450f5d22b600a02081dceef47966ffaf36a3af'; \
3333
;; \
3434
*) echo >&2 "error: unsupported architecture '$arch' (likely packaging update needed)"; exit 1 ;; \
3535
esac; \

elixir/Dockerfile

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,9 @@ 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"
55
ARG GOLANG_VERSION="1.24.1"
6-
ARG GOLANG_DOWNLOAD_SHA256_amd64="6924efde5de86fe277676e929dc9917d466efa02fb934197bc2eba35d5680971"
7-
ARG GOLANG_DOWNLOAD_SHA256_arm64="16e5017863a7f6071363782b1b8042eb12c6ca4f4cd71528b2123f0a1275b13e"
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

0 commit comments

Comments
 (0)