File tree Expand file tree Collapse file tree 15 files changed +15
-15
lines changed
arduino/discovery/discovery_client Expand file tree Collapse file tree 15 files changed +15
-15
lines changed Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ name: Check easyjson generated files
2
2
3
3
env :
4
4
# See: https://github.com/actions/setup-go/tree/main#supported-version-syntax
5
- GO_VERSION : " 1.19 "
5
+ GO_VERSION : " 1.20 "
6
6
7
7
# See: https://docs.github.com/en/actions/reference/events-that-trigger-workflows
8
8
on :
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ name: Check Go Dependencies
3
3
4
4
env :
5
5
# See: https://github.com/actions/setup-go/tree/main#supported-version-syntax
6
- GO_VERSION : " 1.19 "
6
+ GO_VERSION : " 1.20 "
7
7
8
8
# See: https://docs.github.com/actions/using-workflows/events-that-trigger-workflows
9
9
on :
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ name: Check Go
3
3
4
4
env :
5
5
# See: https://github.com/actions/setup-go/tree/main#supported-version-syntax
6
- GO_VERSION : " 1.19 "
6
+ GO_VERSION : " 1.20 "
7
7
8
8
# See: https://docs.github.com/en/actions/reference/events-that-trigger-workflows
9
9
on :
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ name: Check Internationalization
2
2
3
3
env :
4
4
# See: https://github.com/actions/setup-go/tree/main#supported-version-syntax
5
- GO_VERSION : " 1.19 "
5
+ GO_VERSION : " 1.20 "
6
6
7
7
# See: https://docs.github.com/en/actions/reference/events-that-trigger-workflows
8
8
on :
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ name: Check Markdown
3
3
4
4
env :
5
5
# See: https://github.com/actions/setup-go/tree/main#supported-version-syntax
6
- GO_VERSION : " 1.19 "
6
+ GO_VERSION : " 1.20 "
7
7
8
8
# See: https://docs.github.com/en/actions/reference/events-that-trigger-workflows
9
9
on :
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ name: Check Website
3
3
4
4
env :
5
5
# See: https://github.com/actions/setup-go/tree/main#supported-version-syntax
6
- GO_VERSION : " 1.19 "
6
+ GO_VERSION : " 1.20 "
7
7
# See: https://github.com/actions/setup-python/tree/main#available-versions-of-python
8
8
PYTHON_VERSION : " 3.9"
9
9
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ name: Check Protocol Buffers
2
2
3
3
env :
4
4
# See: https://github.com/actions/setup-go/tree/main#supported-version-syntax
5
- GO_VERSION : " 1.19 "
5
+ GO_VERSION : " 1.20 "
6
6
7
7
# See: https://docs.github.com/en/actions/reference/events-that-trigger-workflows
8
8
on :
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ name: Deploy Website
3
3
4
4
env :
5
5
# See: https://github.com/actions/setup-go/tree/main#supported-version-syntax
6
- GO_VERSION : " 1.19 "
6
+ GO_VERSION : " 1.20 "
7
7
# See: https://github.com/actions/setup-python/tree/main#available-versions-of-python
8
8
PYTHON_VERSION : " 3.9"
9
9
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ name: i18n-weekly-pull
2
2
3
3
env :
4
4
# See: https://github.com/actions/setup-go/tree/main#supported-version-syntax
5
- GO_VERSION : " 1.19 "
5
+ GO_VERSION : " 1.20 "
6
6
COVERAGE_ARTIFACT : coverage-data
7
7
8
8
on :
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ name: Test Go
3
3
4
4
env :
5
5
# See: https://github.com/actions/setup-go/tree/main#supported-version-syntax
6
- GO_VERSION : " 1.19 "
6
+ GO_VERSION : " 1.20 "
7
7
COVERAGE_ARTIFACT : coverage-data
8
8
9
9
# See: https://docs.github.com/en/free-pro-team@latest/actions/reference/events-that-trigger-workflows
Original file line number Diff line number Diff line change @@ -19,7 +19,7 @@ version: "3"
19
19
20
20
vars :
21
21
CONTAINER : " docker.elastic.co/beats-dev/golang-crossbuild"
22
- GO_VERSION : " 1.19.3 "
22
+ GO_VERSION : " 1.20.1 "
23
23
24
24
tasks :
25
25
Windows_32bit :
Original file line number Diff line number Diff line change 1
1
module github.com/arduino/arduino-cli/arduino/discovery/discovery_client
2
2
3
- go 1.19
3
+ go 1.20
4
4
5
5
replace github.com/arduino/arduino-cli => ../../..
6
6
Original file line number Diff line number Diff line change @@ -70,7 +70,7 @@ submitting a PR:
70
70
71
71
To build the Arduino CLI from sources you need the following tools to be available in your local environment:
72
72
73
- - [ Go] [ 1 ] version 1.19 or later
73
+ - [ Go] [ 1 ] version 1.20 or later
74
74
- [ Taskfile] [ 2 ] to help you run the most common tasks from the command line
75
75
76
76
If you want to run integration tests you will also need:
Original file line number Diff line number Diff line change 1
1
// Source: https://github.com/arduino/tooling-project-assets/blob/main/workflow-templates/assets/cobra/docsgen/go.mod
2
2
module github.com/arduino/arduino-cli/docsgen
3
3
4
- go 1.19
4
+ go 1.20
5
5
6
6
replace github.com/arduino/arduino-cli => ../
7
7
Original file line number Diff line number Diff line change 1
1
module github.com/arduino/arduino-cli
2
2
3
- go 1.19
3
+ go 1.20
4
4
5
5
// We must use this fork until https://github.com/mailru/easyjson/pull/372 is merged
6
6
replace github.com/mailru/easyjson => github.com/cmaglie/easyjson v0.8.1
You can’t perform that action at this time.
0 commit comments