Skip to content

Commit

Permalink
bump Golang to 1.24 (#238)
Browse files Browse the repository at this point in the history
  • Loading branch information
aler9 authored Mar 1, 2025
1 parent 115a06e commit 1714b33
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:

- uses: actions/setup-go@v3
with:
go-version: "1.23"
go-version: "1.24"

- uses: golangci/golangci-lint-action@v3
with:
Expand All @@ -29,7 +29,7 @@ jobs:

- uses: actions/setup-go@v3
with:
go-version: "1.23"
go-version: "1.24"

- run: |
go mod tidy
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/msgs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
steps:
- uses: actions/setup-go@v3
with:
go-version: "1.23"
go-version: "1.24"

- run: go install mvdan.cc/[email protected]

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
runs-on: ubuntu-22.04
strategy:
matrix:
go: ["1.21", "1.22", "1.23"]
go: ["1.22", "1.23", "1.24"]

steps:
- uses: actions/checkout@v4
Expand All @@ -22,7 +22,7 @@ jobs:

- run: make test-nodocker

- if: matrix.go == '1.23'
- if: matrix.go == '1.24'
uses: codecov/codecov-action@v3
with:
token: ${{ secrets.CODECOV_TOKEN }}
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
BASE_IMAGE = golang:1.23-alpine3.20
BASE_IMAGE = golang:1.24-alpine3.20
LINT_IMAGE = golangci/golangci-lint:v1.64.5

.PHONY: $(shell ls)
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ Features:

## Installation

1. Install Go ≥ 1.21.
1. Install Go ≥ 1.22.

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

Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/bluenviron/goroslib/v2

go 1.21.0
go 1.22.0

require (
github.com/alecthomas/kong v1.8.1
Expand Down

0 comments on commit 1714b33

Please sign in to comment.