Skip to content

Commit 35f42ed

Browse files
bump Golang to 1.26
1 parent 4ce154a commit 35f42ed

File tree

5 files changed

+7
-7
lines changed

5 files changed

+7
-7
lines changed

.github/workflows/lint.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515

1616
- uses: actions/setup-go@v6
1717
with:
18-
go-version: "1.25"
18+
go-version: "1.26"
1919

2020
- uses: golangci/golangci-lint-action@v9
2121
with:
@@ -29,7 +29,7 @@ jobs:
2929

3030
- uses: actions/setup-go@v6
3131
with:
32-
go-version: "1.25"
32+
go-version: "1.26"
3333

3434
- run: |
3535
go mod tidy

.github/workflows/test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
runs-on: ubuntu-22.04
1212
strategy:
1313
matrix:
14-
go: ["1.24", "1.25"]
14+
go: ["1.25", "1.26"]
1515

1616
steps:
1717
- uses: actions/checkout@v6
@@ -22,7 +22,7 @@ jobs:
2222

2323
- run: make test-nodocker
2424

25-
- if: matrix.go == '1.25'
25+
- if: matrix.go == '1.26'
2626
uses: codecov/codecov-action@v5
2727
with:
2828
token: ${{ secrets.CODECOV_TOKEN }}

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
BASE_IMAGE = golang:1.25-alpine3.22
1+
BASE_IMAGE = golang:1.26-alpine3.22
22
LINT_IMAGE = golangci/golangci-lint:v2.8.0
33

44
.PHONY: $(shell ls)

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ Features:
4040

4141
## Installation
4242

43-
1. Install Go ≥ 1.24.
43+
1. Install Go ≥ 1.25.
4444

4545
2. Create an empty folder, open a terminal in it and initialize the Go modules system:
4646

go.mod

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

3-
go 1.24.0
3+
go 1.25.0
44

55
require (
66
bou.ke/monkey v1.0.2

0 commit comments

Comments
 (0)