Skip to content

Commit e3b3fe3

Browse files
authored
chore: bump go to 1.23 (#480)
1 parent cdcab17 commit e3b3fe3

File tree

3 files changed

+11
-9
lines changed

3 files changed

+11
-9
lines changed

.github/workflows/golangci.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -10,16 +10,16 @@ jobs:
1010
runs-on: ubuntu-latest
1111
steps:
1212
- name: Checkout
13-
uses: actions/checkout@v3.0.1
13+
uses: actions/checkout@v4
1414

1515
- name: Setup Go
16-
uses: actions/setup-go@v4
16+
uses: actions/setup-go@v5
1717
with:
18-
go-version: 1.20.x
18+
go-version: 1.23.x
1919

2020
- run: go mod vendor
2121

2222
- name: Run golangci-lint
23-
uses: golangci/golangci-lint-action@v3
23+
uses: golangci/golangci-lint-action@v6
2424
with:
25-
version: v1.53
25+
version: v1.61

.github/workflows/test.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,12 +19,12 @@ jobs:
1919

2020
steps:
2121
- name: Checkout
22-
uses: actions/checkout@v3
22+
uses: actions/checkout@v4
2323

2424
- name: Set up Go
25-
uses: actions/setup-go@v4
25+
uses: actions/setup-go@v5
2626
with:
27-
go-version: '1.20'
27+
go-version: '1.23'
2828

2929
- name: test
3030
run: make test

go.mod

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
module github.com/terraform-providers/terraform-provider-postgresql
22

3-
go 1.20
3+
go 1.23
4+
5+
toolchain go1.23.2
46

57
require (
68
github.com/Azure/azure-sdk-for-go/sdk/azcore v1.11.1

0 commit comments

Comments
 (0)