Skip to content

[+] bump Go to v1.24 #698

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Mar 26, 2025
Merged
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
8 changes: 4 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
- name: Set up Golang
uses: actions/setup-go@v5
with:
go-version: '1.23'
go-version: '1.24'
cache-dependency-path: 'go.sum'

- name: Set up Node.js
Expand Down Expand Up @@ -71,7 +71,7 @@ jobs:
- name: Set up Golang
uses: actions/setup-go@v5
with:
go-version: '1.23'
go-version: '1.24'
cache-dependency-path: 'go.sum'

- name: Download webui artifact
Expand Down Expand Up @@ -102,7 +102,7 @@ jobs:
- name: Set up Golang
uses: actions/setup-go@v5
with:
go-version: '1.23'
go-version: '1.24'
cache-dependency-path: 'go.sum'

- name: Set up Node.js
Expand Down Expand Up @@ -154,7 +154,7 @@ jobs:
- name: Set up Golang
uses: actions/setup-go@v5
with:
go-version: '1.23'
go-version: '1.24'

- name: Set up gopages
run: go install github.com/johnstarich/go/gopages@v0.1.28
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
- name: Set up Golang
uses: actions/setup-go@v5
with:
go-version: '1.23'
go-version: '1.24'

- name: Check out code into the Go module directory
uses: actions/checkout@v4
Expand Down
2 changes: 1 addition & 1 deletion docker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ RUN cd webui && yarn install --network-timeout 100000 && yarn build
# ----------------------------------------------------------------
# 2. Build gatherer
# ----------------------------------------------------------------
FROM golang:1.23 AS builder
FROM golang:1.24 AS builder

ARG VERSION
ARG GIT_HASH
Expand Down
2 changes: 1 addition & 1 deletion docker/demo/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ RUN cd webui && yarn install --network-timeout 100000 && yarn build
# ----------------------------------------------------------------
# 2. Build gatherer
# ----------------------------------------------------------------
FROM golang:1.23 AS builder
FROM golang:1.24 AS builder

ARG VERSION
ARG GIT_HASH
Expand Down
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/cybertec-postgresql/pgwatch/v3

go 1.23.0
go 1.24.0

require (
github.com/cybertec-postgresql/pgx-migrator v1.1.0
Expand Down
Loading