Skip to content

Commit e55a1fa

Browse files
alnrory-bot
authored andcommitted
chore: bump Go everywhere
GitOrigin-RevId: e381f03d1eb905f631c633bfb78d9184435782c8
1 parent 17a4c4f commit e55a1fa

File tree

8 files changed

+11
-11
lines changed

8 files changed

+11
-11
lines changed

.docker/Dockerfile-local-build

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM golang:1.24 AS builder
1+
FROM golang:1.25 AS builder
22

33
WORKDIR /go/src/github.com/ory/hydra
44

.docker/Dockerfile-test-hsm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM golang:1.24-alpine3.21 AS builder
1+
FROM golang:1.25-alpine3.21 AS builder
22

33
RUN apk add --no-cache build-base git gcc bash
44

.github/workflows/ci.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
fetch-depth: 2
2727
- uses: actions/setup-go@v3
2828
with:
29-
go-version: "1.24"
29+
go-version: "1.25"
3030
- name: Start service
3131
run: ./test/conformance/start.sh
3232
- name: Run tests
@@ -65,7 +65,7 @@ jobs:
6565
fetch-depth: 2
6666
- uses: actions/setup-go@v4
6767
with:
68-
go-version: "1.24"
68+
go-version: "1.25"
6969
- run: go list -json > go.list
7070
- name: Run nancy
7171
uses: sonatype-nexus-community/[email protected]
@@ -100,7 +100,7 @@ jobs:
100100
- uses: ory/ci/checkout@master
101101
- uses: actions/setup-go@v3
102102
with:
103-
go-version: "1.24"
103+
go-version: "1.25"
104104
- name: Setup HSM libs and packages
105105
run: |
106106
sudo apt install -y softhsm2 opensc
@@ -149,7 +149,7 @@ jobs:
149149
- uses: ory/ci/checkout@master
150150
- uses: actions/setup-go@v3
151151
with:
152-
go-version: "1.24"
152+
go-version: "1.25"
153153
- uses: actions/cache@v4
154154
with:
155155
path: ./test/e2e/hydra

.github/workflows/codeql-analysis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ jobs:
4444

4545
- uses: actions/setup-go@v4
4646
with:
47-
go-version: "1.24"
47+
go-version: "1.25"
4848
- run: go version
4949

5050
# Initializes the CodeQL tools for scanning.

.github/workflows/format.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
- uses: actions/checkout@v3
1313
- uses: actions/setup-go@v3
1414
with:
15-
go-version: "1.24"
15+
go-version: "1.25"
1616
- run: make format
1717
- name: Indicate formatting issues
1818
run: git diff HEAD --exit-code --color

oryx/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module github.com/ory/x
22

3-
go 1.24.6
3+
go 1.25
44

55
require (
66
code.dny.dev/ssrf v0.2.0

oryx/randx/strength/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module github.com/ory/x/randx/strength
22

3-
go 1.24.6
3+
go 1.25
44

55
replace github.com/ory/x => ../..
66

test/conformance/hydra/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM golang:1.24 AS builder
1+
FROM golang:1.25 AS builder
22

33
RUN apt-get update && \
44
apt-get install --no-install-recommends -y \

0 commit comments

Comments
 (0)