Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .drone.star
Original file line number Diff line number Diff line change
@@ -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"
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile.reva
Original file line number Diff line number Diff line change
Expand Up @@ -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 \
Expand Down
4 changes: 2 additions & 2 deletions Dockerfile.revad
Original file line number Diff line number Diff line change
Expand Up @@ -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 \
Expand All @@ -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
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile.revad-eos
Original file line number Diff line number Diff line change
Expand Up @@ -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 \
Expand Down
5 changes: 5 additions & 0 deletions changelog/unreleased/bump-go-1.25.6.md
Original file line number Diff line number Diff line change
@@ -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
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/owncloud/reva/v2

go 1.24.0
go 1.25

require (
bou.ke/monkey v1.0.2
Expand Down