Skip to content

Commit 41175c6

Browse files
committed
chore: add support for go 1.25 (#1080)
1 parent 3475578 commit 41175c6

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

.github/workflows/test-pull-request.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ jobs:
4646
runs-on: ubuntu-latest
4747
strategy:
4848
matrix:
49-
go-version: [1.23.0, 1.24.0, stable]
49+
go-version: [1.24.0, 1.25.0, stable]
5050
continue-on-error: true
5151
steps:
5252
- name: Checkout go-agent code
@@ -76,7 +76,7 @@ jobs:
7676
runs-on: ubuntu-latest
7777
strategy:
7878
matrix:
79-
go-version: [1.23.0, 1.24.0, stable]
79+
go-version: [1.24.0, 1.25.0, stable]
8080
continue-on-error: true
8181
steps:
8282
- name: Checkout go-agent code
@@ -104,7 +104,7 @@ jobs:
104104
runs-on: ${{ matrix.runner }}
105105
strategy:
106106
matrix:
107-
go-version: [1.23.0, 1.24.0, latest]
107+
go-version: [1.24.0, 1.25.0, latest]
108108
core-test: ${{ fromJson(needs.setup-core-matrix.outputs.CORE_MATRIX) }}
109109
runner: [ubuntu-latest, ubuntu-24.04-arm]
110110
continue-on-error: true
@@ -139,7 +139,7 @@ jobs:
139139
runs-on: ubuntu-latest
140140
strategy:
141141
matrix:
142-
go-version: [1.23.0, 1.24.0, latest]
142+
go-version: [1.24.0, 1.25.0, latest]
143143
integration-test: ${{ fromJson(needs.setup-integration-matrix.outputs.INTEGRATION_MATRIX) }}
144144
continue-on-error: true
145145
steps:
@@ -173,7 +173,7 @@ jobs:
173173
runs-on: ubuntu-24.04-arm
174174
strategy:
175175
matrix:
176-
go-version: [1.23.0, 1.24.0, latest]
176+
go-version: [1.24.0, 1.25.0, latest]
177177
integration-test: ${{ fromJson(needs.setup-integration-matrix.outputs.INTEGRATION_MATRIX) }}
178178
continue-on-error: true
179179
steps:

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
ARG GO_VERSION
33

44
# Takes in go version
5-
FROM golang:${GO_VERSION:-1.24}
5+
FROM golang:${GO_VERSION:-1.25}
66

77
ARG DEBIAN_FRONTEND=noninteractive
88
RUN apt-get update && apt-get install -y --no-install-recommends \

docker-compose.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ services:
4040
context: .
4141
dockerfile: ./Dockerfile
4242
args:
43-
GO_VERSION: ${GO_VERSION:-1.24}
43+
GO_VERSION: ${GO_VERSION:-1.25}
4444
environment:
4545
PG_HOST: postgres
4646
PG_PORT: 5432
@@ -63,7 +63,7 @@ services:
6363
context: .
6464
dockerfile: ./Dockerfile
6565
args:
66-
GO_VERSION: ${GO_VERSION:-1.24}
66+
GO_VERSION: ${GO_VERSION:-1.25}
6767
environment:
6868
PG_HOST: postgres
6969
PG_PORT: 5432

0 commit comments

Comments
 (0)