Skip to content
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

[no-release-notes] /{go,.github,testing}: bump go #1026

Merged
merged 2 commits into from
Dec 6, 2024
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
2 changes: 1 addition & 1 deletion .github/workflows/cd-release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ jobs:
run: |
latest=$(git rev-parse HEAD)
echo "commitish=$latest" >> $GITHUB_OUTPUT
GO_BUILD_VERSION=1.22 scripts/build_binaries.sh
GO_BUILD_VERSION=1.23.3 scripts/build_binaries.sh
- name: Create Release
id: create_release
uses: dolthub/create-release@v2
Expand Down
4 changes: 1 addition & 3 deletions go.mod
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
module github.com/dolthub/doltgresql

go 1.22.2

toolchain go1.22.3
go 1.23.3

require (
github.com/PuerkitoBio/goquery v1.8.1
Expand Down
2 changes: 1 addition & 1 deletion scripts/run_staticcheck.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@
cd "$(cd -P -- "$(dirname -- "$0")" && pwd -P)"
cd ..

go run honnef.co/go/tools/cmd/staticcheck@2023.1.6 ./...
go run honnef.co/go/tools/cmd/staticcheck@2024.1.1 ./...
2 changes: 1 addition & 1 deletion testing/PostgresDockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ RUN apt update -y && \

# install go
WORKDIR /root
ENV GO_VERSION=1.22.1
ENV GO_VERSION=1.23.3
ENV GOPATH=$HOME/go
ENV PATH=$PATH:$GOPATH/bin
ENV PATH=$PATH:$GOPATH/bin:/usr/local/go/bin
Expand Down
2 changes: 1 addition & 1 deletion testing/ReplicationTestDockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ FROM postgres:16
ENV POSTGRES_PASSWORD=password
ENV POSTGRES_USER=postgres

ENV GO_VERSION=1.22.0
ENV GO_VERSION=1.23.3

# Install Go
RUN apt-get update && \
Expand Down
Loading