From 340e08e29a19e99f1e5da9893a11ee68654579a8 Mon Sep 17 00:00:00 2001 From: Nathan <148575555+nathan-artie@users.noreply.github.com> Date: Mon, 19 Aug 2024 11:47:13 -0700 Subject: [PATCH] go.mod: upgrade Go to 1.23 (#468) --- .github/workflows/gha-go-test.yaml | 2 +- .github/workflows/gha-integration-tests.yaml | 12 ++++++------ go.mod | 2 +- 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/gha-go-test.yaml b/.github/workflows/gha-go-test.yaml index d52ceab2..7672158d 100644 --- a/.github/workflows/gha-go-test.yaml +++ b/.github/workflows/gha-go-test.yaml @@ -9,7 +9,7 @@ jobs: - name: Set up Go uses: actions/setup-go@v5 with: - go-version: 1.22 + go-version: 1.23 - name: Run staticcheck env: SC_VERSION: "2024.1" diff --git a/.github/workflows/gha-integration-tests.yaml b/.github/workflows/gha-integration-tests.yaml index 6b0ca7b0..1942137a 100644 --- a/.github/workflows/gha-integration-tests.yaml +++ b/.github/workflows/gha-integration-tests.yaml @@ -4,7 +4,7 @@ on: [push] jobs: Postgres: runs-on: ubuntu-latest - container: golang:1.22 + container: golang:1.23 services: postgres: image: postgis/postgis:16-3.4-alpine @@ -20,12 +20,12 @@ jobs: - name: Set up Go uses: actions/setup-go@v5 with: - go-version: 1.22 + go-version: 1.23 - name: Run integration test run: PG_HOST=postgres make postgres-itest MySQL: runs-on: ubuntu-latest - container: golang:1.22 + container: golang:1.23 services: mysql: image: mysql:8.3 @@ -41,12 +41,12 @@ jobs: - name: Set up Go uses: actions/setup-go@v5 with: - go-version: 1.22 + go-version: 1.23 - name: Run integration test run: MYSQL_HOST=mysql make mysql-itest MongoDB: runs-on: ubuntu-latest - container: golang:1.22 + container: golang:1.23 services: mongo: image: mongo:7.0 @@ -58,6 +58,6 @@ jobs: - name: Set up Go uses: actions/setup-go@v5 with: - go-version: 1.22 + go-version: 1.23 - name: Run integration test run: MONGO_HOST=mongodb://mongo make mongo-itest diff --git a/go.mod b/go.mod index ebab4975..1ed1e8ee 100644 --- a/go.mod +++ b/go.mod @@ -1,6 +1,6 @@ module github.com/artie-labs/reader -go 1.22.4 +go 1.23.0 require ( github.com/DataDog/datadog-go/v5 v5.5.0