Skip to content

Commit

Permalink
go.mod: upgrade Go to 1.23 (#468)
Browse files Browse the repository at this point in the history
  • Loading branch information
nathan-artie authored Aug 19, 2024
1 parent ac67568 commit 340e08e
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/gha-go-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/gha-integration-tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand All @@ -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
Expand All @@ -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
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/artie-labs/reader

go 1.22.4
go 1.23.0

require (
github.com/DataDog/datadog-go/v5 v5.5.0
Expand Down

0 comments on commit 340e08e

Please sign in to comment.