Skip to content

Commit a26d722

Browse files
committed
feat: add support for Go 1.25
1 parent 6489d03 commit a26d722

File tree

3 files changed

+10
-3
lines changed

3 files changed

+10
-3
lines changed

.github/workflows/dispatch-run.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ on:
77
description: "Workflow to dispatch (e.g. .github/workflows/update-go.yml)"
88
required: true
99
inputs:
10-
description: 'Workflow inputs (e.g {"version": "1.24", "dry-run": "true"})'
10+
description: 'Workflow inputs (e.g {"version": "1.25", "dry-run": "true"})'
1111
required: false
1212
default: '{}'
1313
filter:

.github/workflows/go-check.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -60,8 +60,9 @@ jobs:
6060
- name: Install staticcheck
6161
env:
6262
# TODO: Update the staticcheck versions to the latest we should be able to use with each Go version.
63-
# STATICCHECK_VERSIONS: | # 2025.1.1, 2025.1.1, 2024.1.1, 2023.1.7, 2023.1.7, 2023.1.7, 2022.1.3, 2022.1.3, 2021.1.2, 2021.1.2, 2021.1.2, 2020.1.6
63+
# STATICCHECK_VERSIONS: | # 2025.1.1, 2025.1.1, 2025.1.1, 2024.1.1, 2023.1.7, 2023.1.7, 2023.1.7, 2022.1.3, 2022.1.3, 2021.1.2, 2021.1.2, 2021.1.2, 2020.1.6
6464
# {
65+
# "1.25": "b8ec13ce4d00445d75da053c47498e6f9ec5d7d6",
6566
# "1.24": "b8ec13ce4d00445d75da053c47498e6f9ec5d7d6",
6667
# "1.23": "b8ec13ce4d00445d75da053c47498e6f9ec5d7d6",
6768
# "1.22": "56172d41b117cc2c2f99f65fe0a790c8d7d7ea66",
@@ -77,6 +78,7 @@ jobs:
7778
# }
7879
STATICCHECK_VERSIONS: |
7980
{
81+
"1.25": "b8ec13ce4d00445d75da053c47498e6f9ec5d7d6",
8082
"1.24": "5af2e5fc3b08ba46027eb48ebddeba34dc0bd02c",
8183
"1.23": "56172d41b117cc2c2f99f65fe0a790c8d7d7ea66",
8284
"1.22": "a093f7c2d3d45d5104fb3414ae939a98be37be02",
@@ -99,8 +101,9 @@ jobs:
99101
- name: Install golangci-lint
100102
if: hashFiles('.golangci.yml', '.golangci.toml', '.golangci.json', '.golangci.yaml') != ''
101103
env:
102-
GOLANGCI_LINT_VERSIONS: | # v2.1.6, v2.1.6, v1.63.4, v1.59.1, v1.55.2, v1.53.3, v1.47.3, v1.44.2, v1.44.2, v1.42.1, v1.39.0, v1.37.1
104+
GOLANGCI_LINT_VERSIONS: | # v2.4.0, v2.1.6, v2.1.6, v1.63.4, v1.59.1, v1.55.2, v1.53.3, v1.47.3, v1.44.2, v1.44.2, v1.42.1, v1.39.0, v1.37.1
103105
{
106+
"1.25": "43d03392d7dc3746fa776dbddd66dfcccff70651",
104107
"1.24": "eabc2638a66daf5bb6c6fb052a32fa3ef7b6600d",
105108
"1.23": "eabc2638a66daf5bb6c6fb052a32fa3ef7b6600d",
106109
"1.22": "c1149695535fda62f6b574bc55dfbc333693647e",

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
66

77
## Unreleased
88

9+
## [1.0.31] - 2025-08-20
10+
### Added
11+
- support for Go 1.25 in the `go-check` workflow
12+
913
## [1.0.30] - 2025-08-04
1014
### Added
1115
- `release` output to the `js-test-and-release` workflow which is `true` if the workflow was triggered by a release branch

0 commit comments

Comments
 (0)