From 6b94461c2a1a6e3362209b3c14879a01b904a38a Mon Sep 17 00:00:00 2001 From: Roman Perekhod <2403905@gmail.com> Date: Mon, 9 Feb 2026 18:23:54 +0100 Subject: [PATCH] feat: bump go to 1.25 --- .drone.star | 2 +- Dockerfile.reva | 2 +- Dockerfile.revad | 4 ++-- Dockerfile.revad-eos | 2 +- changelog/unreleased/bump-go-1.25.6.md | 5 +++++ go.mod | 2 +- 6 files changed, 11 insertions(+), 6 deletions(-) create mode 100644 changelog/unreleased/bump-go-1.25.6.md diff --git a/.drone.star b/.drone.star index 2bcddfcbc6c..a72f088b415 100644 --- a/.drone.star +++ b/.drone.star @@ -1,5 +1,5 @@ # images -OC_CI_GOLANG = "owncloudci/golang:1.24" +OC_CI_GOLANG = "owncloudci/golang:1.25" OC_CI_ALPINE = "owncloudci/alpine:latest" OSIXIA_OPEN_LDAP = "osixia/openldap:1.3.0" REDIS = "redis:6-alpine" diff --git a/Dockerfile.reva b/Dockerfile.reva index 93c3870cad7..8e7b61aa7fa 100644 --- a/Dockerfile.reva +++ b/Dockerfile.reva @@ -16,7 +16,7 @@ # granted to it by virtue of its status as an Intergovernmental Organization # or submit itself to any jurisdiction. -FROM golang:1.22-alpine3.19 as builder +FROM owncloudci/golang:1.25 as builder RUN apk --no-cache add \ ca-certificates \ diff --git a/Dockerfile.revad b/Dockerfile.revad index b30eb6f7944..42476c3b799 100644 --- a/Dockerfile.revad +++ b/Dockerfile.revad @@ -16,7 +16,7 @@ # granted to it by virtue of its status as an Intergovernmental Organization # or submit itself to any jurisdiction. -FROM golang:1.22-alpine3.19 as builder +FROM owncloudci/golang:1.25 as builder RUN apk --no-cache add \ ca-certificates \ @@ -36,7 +36,7 @@ RUN make build-revad-docker && \ RUN mkdir -p /etc/revad/ && touch /etc/revad/revad.toml -FROM golang:1.22-alpine3.19 +FROM owncloudci/golang:1.25 RUN apk --no-cache add \ mailcap diff --git a/Dockerfile.revad-eos b/Dockerfile.revad-eos index 0d126d6c0a9..24853df0f7d 100644 --- a/Dockerfile.revad-eos +++ b/Dockerfile.revad-eos @@ -16,7 +16,7 @@ # granted to it by virtue of its status as an Intergovernmental Organization # or submit itself to any jurisdiction. -FROM golang:1.22-alpine3.19 as builder +FROM owncloudci/golang:1.25 as builder RUN apk --no-cache add \ bash \ diff --git a/changelog/unreleased/bump-go-1.25.6.md b/changelog/unreleased/bump-go-1.25.6.md new file mode 100644 index 00000000000..39bc04b3255 --- /dev/null +++ b/changelog/unreleased/bump-go-1.25.6.md @@ -0,0 +1,5 @@ +Enhancement: Update to go 1.25.6 + +We have updated go to version 1.25.6 and alpine to version 3.23.3 + +https://github.com/owncloud/reva/pull/525 diff --git a/go.mod b/go.mod index 563a2f7505e..a32300eab1d 100644 --- a/go.mod +++ b/go.mod @@ -1,6 +1,6 @@ module github.com/owncloud/reva/v2 -go 1.24.0 +go 1.25 require ( bou.ke/monkey v1.0.2