Skip to content

Commit 76a715f

Browse files
committed
bump go version to the latest available one
1 parent 6257da8 commit 76a715f

5 files changed

+7
-5
lines changed

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

+1-1
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/v3#readme
6-
GO_VERSION: "1.14"
6+
GO_VERSION: "1.19"
77

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

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ on:
3030
repository_dispatch:
3131

3232
env:
33-
GO_VERSION: "1.14"
33+
GO_VERSION: "1.19"
3434

3535
jobs:
3636
run-determination:

.github/workflows/release.yml

+3-1
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,8 @@ env:
2020
INSTALLER_CERT_MAC_PATH: "/tmp/ArduinoCerts2020.p12"
2121
AC_USERNAME: ${{ secrets.AC_USERNAME }} # used by gon
2222
AC_PASSWORD: ${{ secrets.AC_PASSWORD }} # used by gon
23+
# See: https://github.com/actions/setup-go/tree/v3#readme
24+
GO_VERSION: "1.19"
2325

2426
jobs:
2527
# The build job is responsible for: configuring the environment, testing and compiling process
@@ -64,7 +66,7 @@ jobs:
6466
- name: Install Go
6567
uses: actions/setup-go@v3
6668
with:
67-
go-version: "1.14"
69+
go-version: ${{ env.GO_VERSION }}
6870

6971
# dependencies used for compiling the GUI
7072
- name: Install Dependencies (Linux)

.github/workflows/test-go-integration-task.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name: Test Integration
33

44
env:
55
# See: https://github.com/actions/setup-go/tree/v2#readme
6-
GO_VERSION: "1.14"
6+
GO_VERSION: "1.19"
77
# See: https://github.com/actions/setup-python/tree/v2#available-versions-of-python
88
PYTHON_VERSION: "3.9"
99

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name: Test Go
33

44
env:
55
# See: https://github.com/actions/setup-go/tree/v2#readme
6-
GO_VERSION: "1.14"
6+
GO_VERSION: "1.19"
77

88
# See: https://docs.github.com/en/free-pro-team@latest/actions/reference/events-that-trigger-workflows
99
on:

0 commit comments

Comments
 (0)