Bump required Go version to 1.20

This allows us to use the stdlib for ECDH crypto used by remote control.
Fixes #5976
This commit is contained in:
Kovid Goyal
2023-02-03 09:32:56 +05:30
parent 331f1b7f2b
commit 27ae9104ac
5 changed files with 23 additions and 23 deletions

View File

@@ -5,7 +5,7 @@ env:
ASAN_OPTIONS: leak_check_at_exit=0
LC_ALL: en_US.UTF-8
LANG: en_US.UTF-8
GO_INSTALL_VERSION: ">=1.19.0"
GO_INSTALL_VERSION: ">=1.20.0"
permissions:
contents: read # to fetch code (actions/checkout)

View File

@@ -26,7 +26,7 @@ jobs:
- name: Install Go
uses: actions/setup-go@v3
with:
go-version: ">=1.19.0"
go-version: ">=1.20.0"
- name: Checkout repository
uses: actions/checkout@v3