Skip to content

Commit

Permalink
Merge pull request #279 from 88labs/enhancement/go-version-1.21.1
Browse files Browse the repository at this point in the history
enhancement: go 1.21
  • Loading branch information
tomtwinkle authored Sep 26, 2023
2 parents b7c8884 + b0a0b02 commit f042e5f
Show file tree
Hide file tree
Showing 14 changed files with 15 additions and 14 deletions.
3 changes: 2 additions & 1 deletion .github/CODEOWNERS
Validating CODEOWNERS rules …
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,5 @@
/sql-escape @KamikazeZirou
/tspb_cast @KamikazeZirou
/ulid @tomtwinkle
/envlookup @tomtwinkle
/envlookup @tomtwinkle
/aws @tomtwinkle
2 changes: 1 addition & 1 deletion .github/workflows/test-aws.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
test:
strategy:
matrix:
go-version: [ 1.20.x ]
go-version: [ 1.21.x ]
os: [ ubuntu-latest ]
runs-on: ${{ matrix.os }}
timeout-minutes: 5
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test-cerrors.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
test:
strategy:
matrix:
go-version: [ 1.20.x ]
go-version: [ 1.21.x ]
os: [ ubuntu-latest ]
runs-on: ${{ matrix.os }}
timeout-minutes: 5
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test-envlookup.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
test:
strategy:
matrix:
go-version: [ 1.20.x ]
go-version: [ 1.21.x ]
os: [ ubuntu-latest ]
runs-on: ${{ matrix.os }}
timeout-minutes: 5
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test-utf8bom.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
test:
strategy:
matrix:
go-version: [ 1.20.x ]
go-version: [ 1.21.x ]
os: [ ubuntu-latest ]
runs-on: ${{ matrix.os }}
timeout-minutes: 5
Expand Down
2 changes: 1 addition & 1 deletion aws/go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/88labs/go-utils/aws

go 1.20
go 1.21

require (
github.com/88labs/go-utils/ulid v0.2.0
Expand Down
2 changes: 1 addition & 1 deletion cerrors/go.mod
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
module github.com/88labs/go-utils/cerrors

go 1.20
go 1.21

require golang.org/x/xerrors v0.0.0-20220907171357-04be3eba64a2
2 changes: 1 addition & 1 deletion envlookup/go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/88labs/go-utils/envlookup

go 1.20
go 1.21

require (
github.com/88labs/go-utils/aws v0.43.0
Expand Down
2 changes: 1 addition & 1 deletion errgroup/go.mod
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module github.com/88labs/go-utils/errgroup

go 1.20
go 1.21
2 changes: 1 addition & 1 deletion osext/go.mod
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module github.com/88labs/go-utils/osext

go 1.20
go 1.21
2 changes: 1 addition & 1 deletion sql-escape/go.mod
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module github.com/88labs/go-utils/sql-escape

go 1.20
go 1.21
2 changes: 1 addition & 1 deletion tspb_cast/go.mod
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
module github.com/88labs/go-utils/tspb_cast

go 1.20
go 1.21

require google.golang.org/protobuf v1.31.0
2 changes: 1 addition & 1 deletion ulid/go.mod
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
module github.com/88labs/go-utils/ulid

go 1.20
go 1.21

require github.com/oklog/ulid/v2 v2.1.0
2 changes: 1 addition & 1 deletion utf8bom/go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/88labs/go-utils/utf8bom

go 1.20
go 1.21

require (
github.com/bxcodec/faker/v3 v3.8.1
Expand Down

0 comments on commit f042e5f

Please sign in to comment.