Draft
Show file tree
Hide file tree
Changes from all commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Failed to load files.
Original file line numberDiff line numberDiff line change
Expand Up@@ -15,7 +15,7 @@ jobs:
# ex:
# - 1.18beta1 -> 1.18.0-beta.1
# - 1.18rc1 -> 1.18.0-rc.1
GO_VERSION: '1.24'
GO_VERSION: '1.25.0-rc.1'
NODE_VERSION: '20.x'
CGO_ENABLED: 0
steps:
Expand Down
Original file line numberDiff line numberDiff line change
Expand Up@@ -9,7 +9,7 @@ env:
# ex:
# - 1.18beta1 -> 1.18.0-beta.1
# - 1.18rc1 -> 1.18.0-rc.1
GO_VERSION: '1.24'
GO_VERSION: '1.25.0-rc.1'

jobs:
update-gha-assets:
Expand Down
Original file line numberDiff line numberDiff line change
Expand Up@@ -10,7 +10,7 @@ env:
# ex:
# - 1.18beta1 -> 1.18.0-beta.1
# - 1.18rc1 -> 1.18.0-rc.1
GO_VERSION: '1.24'
GO_VERSION: '1.25.0-rc.1'

jobs:
# Check if there is any dirty change for go mod tidy
Expand Down
Original file line numberDiff line numberDiff line change
Expand Up@@ -13,7 +13,7 @@ jobs:
# ex:
# - 1.18beta1 -> 1.18.0-beta.1
# - 1.18rc1 -> 1.18.0-rc.1
GO_VERSION: '1.24'
GO_VERSION: '1.25.0-rc.1'
NODE_VERSION: '20.x'
CGO_ENABLED: 0

Expand Down
Original file line numberDiff line numberDiff line change
Expand Up@@ -10,7 +10,7 @@ env:
# ex:
# - 1.18beta1 -> 1.18.0-beta.1
# - 1.18rc1 -> 1.18.0-rc.1
GO_VERSION: '1.24'
GO_VERSION: '1.25.0-rc.1'

jobs:
# Check if there is any dirty change for go mod tidy
Expand DownExpand Up@@ -39,7 +39,9 @@ jobs:
# ex:
# - 1.18beta1 -> 1.18.0-beta.1
# - 1.18rc1 -> 1.18.0-rc.1
go-version: ${{ env.GO_VERSION }}
# TODO(ldez) must be changed after the first release of golangci-lint with go1.24
# go-version: ${{ env.GO_VERSION }}
go-version: '1.24'
- name: lint
uses: golangci/[email protected]
with:
Expand DownExpand Up@@ -75,8 +77,8 @@ jobs:
- ubuntu-latest
- ubuntu-24.04-arm
golang:
- '1.23'
- '1.24'
- '1.25.0-rc.1'
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
Expand Down
Original file line numberDiff line numberDiff line change
Expand Up@@ -12,7 +12,7 @@ jobs:
# ex:
# - 1.18beta1 -> 1.18.0-beta.1
# - 1.18rc1 -> 1.18.0-rc.1
GO_VERSION: '1.24'
GO_VERSION: '1.25.0-rc.1'
CHOCOLATEY_VERSION: 2.2.0
steps:
# temporary workaround for an error in free disk space action
Expand Down
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
# syntax=docker/dockerfile:1.4
FROM golang:1.24-alpine
FROM golang:1.25-alpine

# related to https://.com/golangci/golangci-lint/issues/3107
ENV GOROOT /usr/local/go
Expand Down
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
# syntax=docker/dockerfile:1.4
FROM golang:1.24
FROM golang:1.25

# related to https://.com/golangci/golangci-lint/issues/3107
ENV GOROOT /usr/local/go
Expand Down
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
module .com/golangci/golangci-lint/v2

go 1.23.0
go 1.24.0

require (
4d63.com/gocheckcompilerdirectives v1.3.0
Expand Down
Loading
Loading