From 99eef0d31e027d47b6f023d8274d01f680bf1fa6 Mon Sep 17 00:00:00 2001 From: Pavlo Golub Date: Wed, 24 Sep 2025 15:52:56 +0200 Subject: [PATCH] bump Go from 1.24 to 1.25 --- .github/workflows/build.yml | 6 +++--- .github/workflows/docker.yml | 2 +- .github/workflows/release.yml | 2 +- go.mod | 4 ++-- go.sum | 2 ++ 5 files changed, 9 insertions(+), 7 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index c3bc1a98..7a47e49b 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -37,7 +37,7 @@ jobs: - name: Set up Golang uses: actions/setup-go@v6 with: - go-version: '1.24' + go-version: '1.25' - name: Test run: go test -v -p 1 -parallel 1 -failfast ./... @@ -87,7 +87,7 @@ jobs: - name: Set up Golang uses: actions/setup-go@v6 with: - go-version: '1.24' + go-version: '1.25' - name: Test run: go test -v -p 1 -parallel 1 -failfast ./... @@ -120,7 +120,7 @@ jobs: - name: Set up Golang uses: actions/setup-go@v6 with: - go-version: '1.24' + go-version: '1.25' - name: Get dependencies run: | diff --git a/.github/workflows/docker.yml b/.github/workflows/docker.yml index 313d9841..b810307e 100644 --- a/.github/workflows/docker.yml +++ b/.github/workflows/docker.yml @@ -28,7 +28,7 @@ jobs: - name: Set up Golang uses: actions/setup-go@v6 with: - go-version: '1.24' + go-version: '1.25' # despite the fact docker will build binary internally # we want to stop workflow in case of any error before pushing to registry diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 6edf86e9..d3682272 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -14,7 +14,7 @@ jobs: - name: Set up Golang uses: actions/setup-go@v6 with: - go-version: '1.24' + go-version: '1.25' - name: Check out code into the Go module directory uses: actions/checkout@v5 diff --git a/go.mod b/go.mod index 1a4117ce..fa290024 100644 --- a/go.mod +++ b/go.mod @@ -1,6 +1,6 @@ module github.com/cybertec-postgresql/pg_timetable -go 1.24.0 +go 1.25.0 require ( github.com/cavaliercoder/grab v2.0.0+incompatible @@ -27,7 +27,7 @@ require ( github.com/pelletier/go-toml/v2 v2.2.4 // indirect github.com/pkg/errors v0.9.1 // indirect github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 // indirect - github.com/sagikazarmark/locafero v0.11.0 // indirect + github.com/sagikazarmark/locafero v0.12.0 // indirect github.com/sourcegraph/conc v0.3.1-0.20240121214520-5f936abd7ae8 // indirect github.com/spf13/afero v1.15.0 // indirect github.com/spf13/cast v1.10.0 // indirect diff --git a/go.sum b/go.sum index 524874d4..3d7ee6d4 100644 --- a/go.sum +++ b/go.sum @@ -47,6 +47,8 @@ github.com/rogpeppe/go-internal v1.12.0 h1:exVL4IDcn6na9z1rAb56Vxr+CgyK3nn3O+epU github.com/rogpeppe/go-internal v1.12.0/go.mod h1:E+RYuTGaKKdloAfM02xzb0FW3Paa99yedzYV+kq4uf4= github.com/sagikazarmark/locafero v0.11.0 h1:1iurJgmM9G3PA/I+wWYIOw/5SyBtxapeHDcg+AAIFXc= github.com/sagikazarmark/locafero v0.11.0/go.mod h1:nVIGvgyzw595SUSUE6tvCp3YYTeHs15MvlmU87WwIik= +github.com/sagikazarmark/locafero v0.12.0 h1:/NQhBAkUb4+fH1jivKHWusDYFjMOOKU88eegjfxfHb4= +github.com/sagikazarmark/locafero v0.12.0/go.mod h1:sZh36u/YSZ918v0Io+U9ogLYQJ9tLLBmM4eneO6WwsI= github.com/sethvargo/go-retry v0.3.0 h1:EEt31A35QhrcRZtrYFDTBg91cqZVnFL2navjDrah2SE= github.com/sethvargo/go-retry v0.3.0/go.mod h1:mNX17F0C/HguQMyMyJxcnU471gOZGxCLyYaFyAZraas= github.com/sirupsen/logrus v1.9.3 h1:dueUQJ1C2q9oE3F7wvmSGAaVtTmUizReu6fjN8uqzbQ=