Skip to content

Commit 2f6ce5c

Browse files
committed
chore: update Go and Alpine versions in Dockerfile and workflow
1 parent 00b4253 commit 2f6ce5c

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
- uses: actions/checkout@master
1010
- uses: actions/setup-go@v3
1111
with:
12-
go-version: 1.24.x
12+
go-version: 1.25.x
1313
- name: Execute test and upload coverage
1414
env:
1515
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM public.ecr.aws/docker/library/golang:1.24.1-alpine3.21 AS build
1+
FROM public.ecr.aws/docker/library/golang:1.25.0-alpine3.22 AS build
22

33
WORKDIR /Activity-Relay
44
COPY . /Activity-Relay
@@ -7,7 +7,7 @@ RUN mkdir -p /rootfs/usr/bin && \
77
apk add -U --no-cache git && \
88
go build -o /rootfs/usr/bin/relay -ldflags "-X main.version=$(git describe --tags HEAD | sed -r 's/v(.*)/\1/')" .
99

10-
FROM public.ecr.aws/docker/library/alpine:3.21.3
10+
FROM public.ecr.aws/docker/library/alpine:3.22.1
1111

1212
COPY --from=build /rootfs/usr/bin /usr/bin
1313
RUN chmod +x /usr/bin/relay && \

0 commit comments

Comments
 (0)