Skip to content

Commit 8c01d81

Browse files
committed
ci(go): require go version 1.25 - use go version 1.26
1 parent dc18025 commit 8c01d81

File tree

6 files changed

+21
-21
lines changed

6 files changed

+21
-21
lines changed

.github/workflows/codeql.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
- name: Set up Go
3333
uses: actions/setup-go@v6
3434
with:
35-
go-version: '1.25'
35+
go-version: '1.26'
3636

3737
- name: Initialize CodeQL
3838
uses: github/codeql-action/init@v4

.github/workflows/cross.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,10 +55,10 @@ jobs:
5555
- name: Checkout repository
5656
uses: actions/checkout@v6
5757

58-
- name: Set up Go 1.25
58+
- name: Set up Go 1.26
5959
uses: actions/setup-go@v6
6060
with:
61-
go-version: 1.25
61+
go-version: 1.26
6262

6363
- name: Build
6464
env:

.github/workflows/go.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222

2323
strategy:
2424
matrix:
25-
go-version: [ '1.24', '1.25' ]
25+
go-version: [ '1.25', '1.26' ]
2626

2727
steps:
2828

@@ -42,11 +42,11 @@ jobs:
4242

4343
- name: Test
4444
run: CGO_ENABLED=1 go test -v -race -tags fts5 ./...
45-
if: ${{ matrix.go-version == '1.24' }}
45+
if: ${{ matrix.go-version == '1.25' }}
4646

4747
- name: Test
4848
run: CGO_ENABLED=1 go test -v -race -tags fts5 ./... -covermode=atomic -coverprofile=coverage.out
49-
if: ${{ matrix.go-version == '1.25' }}
49+
if: ${{ matrix.go-version == '1.26' }}
5050

5151
- name: Upload coverage report
5252
uses: codecov/codecov-action@v5
@@ -56,13 +56,13 @@ jobs:
5656
files: ./coverage.out
5757
flags: unittests
5858
verbose: true
59-
if: ${{ matrix.go-version == '1.25' }}
59+
if: ${{ matrix.go-version == '1.26' }}
6060

6161
- name: GoLang CI Lint
6262
uses: golangci/golangci-lint-action@v9
6363
with:
6464
version: latest
65-
if: ${{ matrix.go-version == '1.25' }}
65+
if: ${{ matrix.go-version == '1.26' }}
6666

6767
docker:
6868

.github/workflows/release.yml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -19,16 +19,16 @@ jobs:
1919
strategy:
2020
matrix:
2121
include:
22-
- { go-version: 1.25, go-os: linux, go-arch: amd64 }
23-
- { go-version: 1.25, go-os: linux, go-arch: 386 }
24-
- { go-version: 1.25, go-os: linux, go-arch: arm64 }
25-
- { go-version: 1.25, go-os: linux, go-arch: arm }
26-
- { go-version: 1.25, go-os: openbsd, go-arch: amd64 }
27-
- { go-version: 1.25, go-os: openbsd, go-arch: 386 }
28-
- { go-version: 1.25, go-os: openbsd, go-arch: arm64 }
29-
- { go-version: 1.25, go-os: openbsd, go-arch: arm }
30-
- { go-version: 1.25, go-os: darwin, go-arch: arm64 }
31-
- { go-version: 1.25, go-os: freebsd, go-arch: amd64 }
22+
- { go-version: 1.26, go-os: linux, go-arch: amd64 }
23+
- { go-version: 1.26, go-os: linux, go-arch: 386 }
24+
- { go-version: 1.26, go-os: linux, go-arch: arm64 }
25+
- { go-version: 1.26, go-os: linux, go-arch: arm }
26+
- { go-version: 1.26, go-os: openbsd, go-arch: amd64 }
27+
- { go-version: 1.26, go-os: openbsd, go-arch: 386 }
28+
- { go-version: 1.26, go-os: openbsd, go-arch: arm64 }
29+
- { go-version: 1.26, go-os: openbsd, go-arch: arm }
30+
- { go-version: 1.26, go-os: darwin, go-arch: arm64 }
31+
- { go-version: 1.26, go-os: freebsd, go-arch: amd64 }
3232

3333
steps:
3434

.golangci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ run:
44
concurrency: 4
55
tests: true
66
allow-parallel-runners: true
7-
go: '1.25'
7+
go: '1.26'
88

99
linters:
1010
enable:

go.mod

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
module tgragnato.it/magnetico/v2
22

3-
go 1.24.0
3+
go 1.25.0
44

5-
toolchain go1.25.0
5+
toolchain go1.26.0
66

77
require (
88
github.com/DATA-DOG/go-sqlmock v1.5.2

0 commit comments

Comments
 (0)