Skip to content

Commit c498b4e

Browse files
authored
Merge pull request #55 from credativ/release/2.2.28
upgrade Go to 1.25.3, upgrade Alpine to 3.22.2
2 parents 496d6af + bb466be commit c498b4e

File tree

19 files changed

+32
-27
lines changed

19 files changed

+32
-27
lines changed

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
- name: Set up Go
2828
uses: actions/setup-go@v3
2929
with:
30-
go-version: 1.25.1
30+
go-version: 1.25.3
3131

3232
- name: Install package dependencies
3333
run: |

.github/workflows/unit-test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
- name: Set up Go
2121
uses: actions/setup-go@v3
2222
with:
23-
go-version: 1.25.1
23+
go-version: 1.25.3
2424

2525
- name: Install package dependencies
2626
run: |

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
## 2.2.28 (2025-10-16)
2+
3+
* Upgrade Go to 1.25.3
4+
* Upgrade Alpine to 3.22.2
5+
16
## 2.2.27 (2025-09-25)
27

38
* Upgrade Go to 1.25.1

cmd/docker-driver/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ COPY . /src/vali
99
WORKDIR /src/vali
1010
RUN make clean && make BUILD_IN_CONTAINER=false cmd/docker-driver/docker-driver
1111

12-
FROM alpine:3.22.1
12+
FROM alpine:3.22.2
1313
RUN apk add --update --no-cache ca-certificates tzdata
1414
COPY --from=build /src/vali/cmd/docker-driver/docker-driver /bin/docker-driver
1515
WORKDIR /bin/

cmd/fluent-bit/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM golang:1.25.1 as build
1+
FROM golang:1.25.3 as build
22
COPY . /src/vali
33
WORKDIR /src/vali
44
RUN make clean && make BUILD_IN_CONTAINER=false fluent-bit-plugin

cmd/logcli/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1-
FROM golang:1.25.1 as build
1+
FROM golang:1.25.3 as build
22

33
ARG TOUCH_PROTOS
44
COPY . /src/vali
55
WORKDIR /src/vali
66
RUN make clean && (if [ "${TOUCH_PROTOS}" ]; then make touch-protos; fi) && make BUILD_IN_CONTAINER=false logcli
77

8-
FROM alpine:3.22.1
8+
FROM alpine:3.22.2
99

1010
RUN apk add --no-cache ca-certificates
1111

cmd/migrate/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
FROM golang:1.25.1 as build
1+
FROM golang:1.25.3 as build
22
COPY . /src/vali
33
WORKDIR /src/vali
44
RUN make clean && make BUILD_IN_CONTAINER=false migrate
55

6-
FROM alpine:3.22.1
6+
FROM alpine:3.22.2
77
RUN apk add --update --no-cache ca-certificates
88
COPY --from=build /src/vali/cmd/migrate/migrate /usr/bin/migrate
99
#ENTRYPOINT [ "/usr/bin/migrate" ]

cmd/querytee/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1-
FROM golang:1.25.1 as build
1+
FROM golang:1.25.3 as build
22

33
ARG TOUCH_PROTOS
44
COPY . /src/vali
55
WORKDIR /src/vali
66
RUN make clean && make BUILD_IN_CONTAINER=false vali-querytee
77

8-
FROM alpine:3.22.1
8+
FROM alpine:3.22.2
99
RUN apk add --update --no-cache ca-certificates
1010
COPY --from=build /src/vali/cmd/querytee/vali-querytee /usr/bin/querytee
1111
ENTRYPOINT [ "/usr/bin/querytee" ]

cmd/querytee/Dockerfile.cross

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ ARG BUILD_IMAGE=ghcr.io/credativ/vali-build-image:0.9.1
22
# Directories in this file are referenced from the root of the project not this folder
33
# This file is intended to be called from the root like so:
44
# docker build -t ghcr.io/credativ/valitail -f cmd/valitail/Dockerfile .
5-
FROM golang:1.25.1-alpine as goenv
5+
FROM golang:1.25.3-alpine as goenv
66
RUN go env GOARCH > /goarch && \
77
go env GOARM > /goarm
88

@@ -12,7 +12,7 @@ COPY . /src/vali
1212
WORKDIR /src/vali
1313
RUN make clean && GOARCH=$(cat /goarch) GOARM=$(cat /goarm) make BUILD_IN_CONTAINER=false vali-querytee
1414

15-
FROM alpine:3.22.1
15+
FROM alpine:3.22.2
1616
RUN apk add --update --no-cache ca-certificates
1717
COPY --from=build /src/vali/cmd/querytee/querytee /usr/bin/querytee
1818
ENTRYPOINT [ "/usr/bin/querytee" ]

cmd/vali-canary/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
1-
FROM golang:1.25.1 as build
1+
FROM golang:1.25.3 as build
22
# TOUCH_PROTOS signifies if we should touch the compiled proto files and thus not regenerate them.
33
# This is helpful when file system timestamps can't be trusted with make
44
ARG TOUCH_PROTOS
55
COPY . /src/vali
66
WORKDIR /src/vali
77
RUN make clean && (if [ "${TOUCH_PROTOS}" ]; then make touch-protos; fi) && make BUILD_IN_CONTAINER=false vali-canary
88

9-
FROM alpine:3.22.1
9+
FROM alpine:3.22.2
1010
RUN apk add --update --no-cache ca-certificates
1111
COPY --from=build /src/vali/cmd/vali-canary/vali-canary /usr/bin/vali-canary
1212
ENTRYPOINT [ "/usr/bin/vali-canary" ]

0 commit comments

Comments
 (0)