Skip to content

Commit f675892

Browse files
authored
[+] bump Go from 1.24 to 1.25 (#710)
1 parent c261ca3 commit f675892

File tree

5 files changed

+9
-7
lines changed

5 files changed

+9
-7
lines changed

.github/workflows/build.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737
- name: Set up Golang
3838
uses: actions/setup-go@v6
3939
with:
40-
go-version: '1.24'
40+
go-version: '1.25'
4141

4242
- name: Test
4343
run: go test -v -p 1 -parallel 1 -failfast ./...
@@ -87,7 +87,7 @@ jobs:
8787
- name: Set up Golang
8888
uses: actions/setup-go@v6
8989
with:
90-
go-version: '1.24'
90+
go-version: '1.25'
9191

9292
- name: Test
9393
run: go test -v -p 1 -parallel 1 -failfast ./...
@@ -120,7 +120,7 @@ jobs:
120120
- name: Set up Golang
121121
uses: actions/setup-go@v6
122122
with:
123-
go-version: '1.24'
123+
go-version: '1.25'
124124

125125
- name: Get dependencies
126126
run: |

.github/workflows/docker.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
- name: Set up Golang
2929
uses: actions/setup-go@v6
3030
with:
31-
go-version: '1.24'
31+
go-version: '1.25'
3232

3333
# despite the fact docker will build binary internally
3434
# we want to stop workflow in case of any error before pushing to registry

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
- name: Set up Golang
1515
uses: actions/setup-go@v6
1616
with:
17-
go-version: '1.24'
17+
go-version: '1.25'
1818

1919
- name: Check out code into the Go module directory
2020
uses: actions/checkout@v5

go.mod

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module github.com/cybertec-postgresql/pg_timetable
22

3-
go 1.24.0
3+
go 1.25.0
44

55
require (
66
github.com/cavaliercoder/grab v2.0.0+incompatible
@@ -27,7 +27,7 @@ require (
2727
github.com/pelletier/go-toml/v2 v2.2.4 // indirect
2828
github.com/pkg/errors v0.9.1 // indirect
2929
github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 // indirect
30-
github.com/sagikazarmark/locafero v0.11.0 // indirect
30+
github.com/sagikazarmark/locafero v0.12.0 // indirect
3131
github.com/sourcegraph/conc v0.3.1-0.20240121214520-5f936abd7ae8 // indirect
3232
github.com/spf13/afero v1.15.0 // indirect
3333
github.com/spf13/cast v1.10.0 // indirect

go.sum

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,8 @@ github.com/rogpeppe/go-internal v1.12.0 h1:exVL4IDcn6na9z1rAb56Vxr+CgyK3nn3O+epU
4747
github.com/rogpeppe/go-internal v1.12.0/go.mod h1:E+RYuTGaKKdloAfM02xzb0FW3Paa99yedzYV+kq4uf4=
4848
github.com/sagikazarmark/locafero v0.11.0 h1:1iurJgmM9G3PA/I+wWYIOw/5SyBtxapeHDcg+AAIFXc=
4949
github.com/sagikazarmark/locafero v0.11.0/go.mod h1:nVIGvgyzw595SUSUE6tvCp3YYTeHs15MvlmU87WwIik=
50+
github.com/sagikazarmark/locafero v0.12.0 h1:/NQhBAkUb4+fH1jivKHWusDYFjMOOKU88eegjfxfHb4=
51+
github.com/sagikazarmark/locafero v0.12.0/go.mod h1:sZh36u/YSZ918v0Io+U9ogLYQJ9tLLBmM4eneO6WwsI=
5052
github.com/sethvargo/go-retry v0.3.0 h1:EEt31A35QhrcRZtrYFDTBg91cqZVnFL2navjDrah2SE=
5153
github.com/sethvargo/go-retry v0.3.0/go.mod h1:mNX17F0C/HguQMyMyJxcnU471gOZGxCLyYaFyAZraas=
5254
github.com/sirupsen/logrus v1.9.3 h1:dueUQJ1C2q9oE3F7wvmSGAaVtTmUizReu6fjN8uqzbQ=

0 commit comments

Comments
 (0)