Skip to content

Commit be1bd9d

Browse files
authored
chore: set go 1.25.0 on CIs (#602)
1 parent 4c83107 commit be1bd9d

File tree

4 files changed

+10
-8
lines changed

4 files changed

+10
-8
lines changed

.github/workflows/go-test.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ on:
77
branches: [main]
88

99
env:
10-
GO_VERSION: "1.24.5"
10+
GO_VERSION: "1.25.0"
1111

1212
jobs:
1313
go-test-orchestrator:
@@ -28,7 +28,7 @@ jobs:
2828
repo-token: ${{ secrets.GITHUB_TOKEN }}
2929

3030
- name: Set up Go
31-
uses: actions/setup-go@v4
31+
uses: actions/setup-go@v5
3232
with:
3333
go-version: ${{ env.GO_VERSION }}
3434

@@ -58,7 +58,7 @@ jobs:
5858
repo-token: ${{ secrets.GITHUB_TOKEN }}
5959

6060
- name: Set up Go
61-
uses: actions/setup-go@v4
61+
uses: actions/setup-go@v5
6262
with:
6363
go-version: ${{ env.GO_VERSION }}
6464

.github/workflows/openapi-spec.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,8 @@ on:
1111
description: "Branch to compare against (used in manual runs)"
1212
required: false
1313
default: "main"
14+
env:
15+
GO_VERSION: "1.25.0"
1416

1517
jobs:
1618
oasdiff:
@@ -26,7 +28,7 @@ jobs:
2628
- name: Set up Go
2729
uses: actions/setup-go@v5
2830
with:
29-
go-version: "1.24"
31+
go-version: ${{ env.GO_VERSION }}
3032

3133
- name: Install oasdiff
3234
run: go install github.com/oasdiff/oasdiff@latest

.github/workflows/release-remoteocd.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ on:
66
- "remoteocd-*" # Trigger on all tags
77

88
env:
9-
GO_VERSION: "1.24"
9+
GO_VERSION: "1.25.0"
1010
PROJECT_NAME: "remoteocd"
1111
GITHUB_TOKEN: ${{ secrets.ARDUINOBOT_TOKEN }}
1212
GITHUB_USERNAME: ArduinoBot
@@ -51,7 +51,7 @@ jobs:
5151
- name: Set up Go
5252
uses: actions/setup-go@v5
5353
with:
54-
go-version: 1.24
54+
go-version: ${{ env.GO_VERSION }}
5555

5656
- name: Build Binary
5757
env:

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ on:
88
- "!releaser-*" # Exclude releaser tags
99

1010
env:
11-
GO_VERSION: "1.24"
11+
GO_VERSION: "1.25.0"
1212
PROJECT_NAME: "arduino-app-cli"
1313
GITHUB_TOKEN: ${{ secrets.ARDUINOBOT_TOKEN }}
1414
GITHUB_USERNAME: ArduinoBot
@@ -45,7 +45,7 @@ jobs:
4545
- name: Set up Go
4646
uses: actions/setup-go@v5
4747
with:
48-
go-version: 1.24
48+
go-version: ${{ env.GO_VERSION }}
4949

5050
- name: Install Task
5151
uses: arduino/setup-task@v2

0 commit comments

Comments
 (0)