Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions DistTasks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ version: "3"

vars:
CONTAINER: "docker.elastic.co/beats-dev/golang-crossbuild"
GO_VERSION: "1.24.8"
GO_VERSION: "1.25.2"

tasks:
Windows_32bit:
Expand Down Expand Up @@ -307,9 +307,9 @@ tasks:
# The reason seems that go 1.16.x use a macos API which is available since 10.12
# https://github.com/techknowlogick/xgo/issues/100#issuecomment-780894190
#
# To compile it we need an SDK >=10.12 so we use the debian10 based container that
# To compile it we need an SDK >=10.12 so we use the debian12 based container that
# has the SDK 10.14 installed.
CONTAINER_TAG: "{{.GO_VERSION}}-darwin-debian10"
CONTAINER_TAG: "{{.GO_VERSION}}-darwin-debian12"
PACKAGE_PLATFORM: "macOS_64bit"
PACKAGE_NAME: "{{.PROJECT_NAME}}_{{.VERSION}}_{{.PACKAGE_PLATFORM}}.tar.gz"

Expand Down
2 changes: 1 addition & 1 deletion Taskfile.yml
Original file line number Diff line number Diff line change
Expand Up @@ -434,7 +434,7 @@ tasks:
- GO_MODULE_PATH: Path of the Go module root (default: {{.DEFAULT_GO_MODULE_PATH}}).
dir: "{{default .DEFAULT_GO_MODULE_PATH .GO_MODULE_PATH}}"
vars:
GO_VERSION: 1.24.8
GO_VERSION: 1.25.2
cmds:
- go mod tidy -compat={{.GO_VERSION}}

Expand Down
2 changes: 1 addition & 1 deletion docsgen/go.mod
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// Source: https://github.com/arduino/tooling-project-assets/blob/main/workflow-templates/assets/cobra/docsgen/go.mod
module github.com/arduino/arduino-lint/docsgen

go 1.24.8
go 1.25.2

replace github.com/arduino/arduino-lint => ../

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/arduino/arduino-lint

go 1.24.8
go 1.25.2

replace github.com/jandelgado/gcov2lcov => github.com/jandelgado/gcov2lcov v1.0.5 // v1.0.4 causes Dependabot updates to fail due to checksum mismatch (likely a moved tag). This is an unused transitive dependency, so version is irrelevant.

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

go 1.24.8
go 1.25.2

replace github.com/arduino/arduino-lint => ../

Expand Down
Loading