Skip to content

Commit c9b181e

Browse files
dpageclaude
andcommitted
Update Go versions to include 1.25
- CI now tests with Go 1.23, 1.24, and 1.25 - Release workflow uses Go 1.25 - Minimum Go version updated to 1.23 - Update docs/installation.md to match README.md Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
1 parent 910b090 commit c9b181e

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

.github/workflows/ci.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
runs-on: ubuntu-latest
1616
strategy:
1717
matrix:
18-
go-version: ['1.22', '1.23', '1.24']
18+
go-version: ['1.23', '1.24', '1.25']
1919

2020
steps:
2121
- name: Checkout code
@@ -37,7 +37,7 @@ jobs:
3737
run: make test
3838

3939
- name: Upload coverage
40-
if: matrix.go-version == '1.24'
40+
if: matrix.go-version == '1.25'
4141
uses: codecov/codecov-action@v4
4242
with:
4343
files: ./coverage.out
@@ -55,7 +55,7 @@ jobs:
5555
- name: Set up Go
5656
uses: actions/setup-go@v5
5757
with:
58-
go-version: '1.24'
58+
go-version: '1.25'
5959
cache: false
6060

6161
- name: Cache Go modules
@@ -64,9 +64,9 @@ jobs:
6464
path: |
6565
~/go/pkg/mod
6666
~/.cache/go-build
67-
key: ${{ runner.os }}-go-1.24-${{ hashFiles('**/go.sum') }}
67+
key: ${{ runner.os }}-go-1.25-${{ hashFiles('**/go.sum') }}
6868
restore-keys: |
69-
${{ runner.os }}-go-1.24-
69+
${{ runner.os }}-go-1.25-
7070
7171
- name: Download dependencies
7272
run: go mod download

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
- name: Set up Go
2121
uses: actions/setup-go@v5
2222
with:
23-
go-version: '1.24'
23+
go-version: '1.25'
2424

2525
- name: Run GoReleaser
2626
uses: goreleaser/goreleaser-action@v6

docs/installation.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ pgEdge Document Loader is open-source, and licensed with the
1313

1414
Before building Document Loader, install:
1515

16-
- Go 1.21 or later.
16+
- Go 1.23 or later.
1717
- PostgreSQL version 12 or later.
1818
- Make (optional, for using Makefile targets to build from source).
1919

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module github.com/pgedge/pgedge-docloader
22

3-
go 1.22
3+
go 1.23
44

55
require (
66
github.com/JohannesKaufmann/html-to-markdown v1.5.0

0 commit comments

Comments
 (0)