Skip to content

Commit 9495b31

Browse files
authored
Upgrade golang version to 1.24.1 (#2850)
* Upgrade go to 1.24 * Update golanci-lint * Updated license cache * Try go1.24.1 * Fix Linux_ARM64 docker image link * Run macOS dist tasks on arm64 runners
1 parent a39f9fd commit 9495b31

16 files changed

+154
-17
lines changed

.github/workflows/check-easyjson.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: Check easyjson generated files
22

33
env:
44
# See: https://github.com/actions/setup-go/tree/main#supported-version-syntax
5-
GO_VERSION: "1.23"
5+
GO_VERSION: "1.24"
66

77
# See: https://docs.github.com/en/actions/reference/events-that-trigger-workflows
88
on:

.github/workflows/check-go-dependencies-task.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name: Check Go Dependencies
33

44
env:
55
# See: https://github.com/actions/setup-go/tree/main#supported-version-syntax
6-
GO_VERSION: "1.23"
6+
GO_VERSION: "1.24"
77

88
# See: https://docs.github.com/actions/using-workflows/events-that-trigger-workflows
99
on:

.github/workflows/check-go-task.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name: Check Go
33

44
env:
55
# See: https://github.com/actions/setup-go/tree/main#supported-version-syntax
6-
GO_VERSION: "1.23"
6+
GO_VERSION: "1.24"
77

88
# See: https://docs.github.com/en/actions/reference/events-that-trigger-workflows
99
on:
@@ -116,7 +116,7 @@ jobs:
116116
- name: golangci-lint
117117
uses: golangci/golangci-lint-action@v6
118118
with:
119-
version: v1.63
119+
version: v1.64.5
120120

121121
- name: Check style
122122
env:

.github/workflows/check-i18n-task.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: Check Internationalization
22

33
env:
44
# See: https://github.com/actions/setup-go/tree/main#supported-version-syntax
5-
GO_VERSION: "1.23"
5+
GO_VERSION: "1.24"
66

77
# See: https://docs.github.com/en/actions/reference/events-that-trigger-workflows
88
on:

.github/workflows/check-markdown-task.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ env:
55
# See: https://github.com/actions/setup-node/#readme
66
NODE_VERSION: 16.x
77
# See: https://github.com/actions/setup-go/tree/main#supported-version-syntax
8-
GO_VERSION: "1.23"
8+
GO_VERSION: "1.24"
99

1010
# See: https://docs.github.com/actions/using-workflows/events-that-trigger-workflows
1111
on:

.github/workflows/check-mkdocs-task.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name: Check Website
33

44
env:
55
# See: https://github.com/actions/setup-go/tree/main#supported-version-syntax
6-
GO_VERSION: "1.23"
6+
GO_VERSION: "1.24"
77
# See: https://github.com/actions/setup-python/tree/main#available-versions-of-python
88
PYTHON_VERSION: "3.9"
99

.github/workflows/check-protobuf-task.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: Check Protocol Buffers
22

33
env:
44
# See: https://github.com/actions/setup-go/tree/main#supported-version-syntax
5-
GO_VERSION: "1.23"
5+
GO_VERSION: "1.24"
66

77
# See: https://docs.github.com/en/actions/reference/events-that-trigger-workflows
88
on:

.github/workflows/deploy-cobra-mkdocs-versioned-poetry.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name: Deploy Website
33

44
env:
55
# See: https://github.com/actions/setup-go/tree/main#supported-version-syntax
6-
GO_VERSION: "1.23"
6+
GO_VERSION: "1.24"
77
# See: https://github.com/actions/setup-python/tree/main#available-versions-of-python
88
PYTHON_VERSION: "3.9"
99

.github/workflows/i18n-weekly-pull.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: i18n-weekly-pull
22

33
env:
44
# See: https://github.com/actions/setup-go/tree/main#supported-version-syntax
5-
GO_VERSION: "1.23"
5+
GO_VERSION: "1.24"
66
COVERAGE_ARTIFACT: coverage-data
77

88
on:

.github/workflows/publish-go-tester-task.yml

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,44 +76,55 @@ jobs:
7676
create-artifacts:
7777
needs: package-name-prefix
7878
name: Create artifact ${{ matrix.artifact.name }}
79-
runs-on: ubuntu-latest
79+
runs-on: ${{ matrix.artifact.runner }}
8080

8181
strategy:
8282
matrix:
8383
artifact:
8484
- task: dist:Windows_32bit
8585
path: "*Windows_32bit.zip"
8686
name: Windows_X86-32
87+
runner: ubuntu-latest
8788
- task: dist:Windows_64bit
8889
path: "*Windows_64bit.zip"
8990
name: Windows_X86-64
91+
runner: ubuntu-latest
9092
- task: dist:Linux_32bit
9193
path: "*Linux_32bit.tar.gz"
9294
name: Linux_X86-32
95+
runner: ubuntu-latest
9396
- task: dist:Linux_64bit
9497
path: "*Linux_64bit.tar.gz"
9598
name: Linux_X86-64
99+
runner: ubuntu-latest
96100
- task: dist:Linux_ARMv6
97101
path: "*Linux_ARMv6.tar.gz"
98102
name: Linux_ARMv6
103+
runner: ubuntu-latest
99104
- task: dist:Linux_ARMv7
100105
path: "*Linux_ARMv7.tar.gz"
101106
name: Linux_ARMv7
107+
runner: ubuntu-latest
102108
- task: dist:Linux_ARM64
103109
path: "*Linux_ARM64.tar.gz"
104110
name: Linux_ARM64
111+
runner: ubuntu-latest
105112
- task: dist:macOS_64bit
106113
path: "*macOS_64bit.tar.gz"
107114
name: macOS_64
115+
runner: ubuntu-latest
108116
- task: dist:macOS_ARM64
109117
path: "*macOS_ARM64.tar.gz"
110118
name: macOS_ARM64
119+
runner: ubuntu-24.04-arm
111120
- task: protoc:collect
112121
path: "*_proto.zip"
113122
name: rpc-protocol-files
123+
runner: ubuntu-latest
114124
- task: dist:jsonschema
115125
path: "*configuration.schema.json"
116126
name: configuration-schema
127+
runner: ubuntu-latest
117128

118129
steps:
119130
- name: Checkout repository

0 commit comments

Comments
 (0)