Skip to content

[skip changelog] Change CI Go version from 1.15 to 1.14 #964

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Oct 14, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/i18n-nightly-push.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
- name: Install Go
uses: actions/setup-go@v2
with:
go-version: "1.15"
go-version: "1.14"

- name: Install Taskfile
uses: Arduino/actions/setup-taskfile@master
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/i18n-weekly-pull.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
- name: Install Go
uses: actions/setup-go@v2
with:
go-version: "1.15"
go-version: "1.14"

- name: Install Go deps
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/link-validation.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
- name: Install Go
uses: actions/setup-go@v2
with:
go-version: "1.15"
go-version: "1.14"

- name: Installs Go dependencies
shell: bash
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish-docs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
- name: Setup Go
uses: actions/setup-go@v2
with:
go-version: "1.15"
go-version: "1.14"

- name: Install Go dependencies
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
- name: Install Go
uses: actions/setup-go@v2
with:
go-version: "1.15"
go-version: "1.14"

- name: Install Go deps
# Since 10/23/2019 pwsh is the default shell
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/validate-docs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:
- name: Setup Go
uses: actions/setup-go@v2
with:
go-version: "1.15"
go-version: "1.14"

- name: Install Go dependencies
run: |
Expand Down
4 changes: 2 additions & 2 deletions docs/CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ submitting a PR:

To build the Arduino CLI from sources you need the following tools to be available in your local environment:

- [Go][1] version 1.15 or later
- [Go][1] version 1.14 or later
- [Taskfile][2] to help you run the most common tasks from the command line

If you want to run integration tests you will also need:
Expand Down Expand Up @@ -195,7 +195,7 @@ If you want to check out how the documentation would look after some local chang
happens in the CI, generating the full documentation website from your personal computer. To run the docs toolchain
locally, you need to have a few dependencies and tools installed:

- [Go][1] version 1.12 or later
- [Go][1] version 1.14 or later
- [Taskfile][2] to help you run the most common tasks from the command line
- A working [Python][3] environment, see [this paragraph](#integration-tests) if you need to setup one

Expand Down