Skip to content

Commit 1d88dcb

Browse files
authored
Bump go 1.20 (#814)
* bump GO to 1.20 * fix license cache
1 parent d170a5e commit 1d88dcb

File tree

9 files changed

+16
-11
lines changed

9 files changed

+16
-11
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.19"
6+
GO_VERSION: "1.20"
77

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

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

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

44
env:
55
# See: https://github.com/actions/setup-go/tree/main#supported-version-syntax
6-
GO_VERSION: "1.19"
6+
GO_VERSION: "1.20"
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.19"
33+
GO_VERSION: "1.20"
3434

3535
jobs:
3636
run-determination:

.github/workflows/release.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ env:
2121
AC_USERNAME: ${{ secrets.AC_USERNAME }} # used by gon
2222
AC_PASSWORD: ${{ secrets.AC_PASSWORD }} # used by gon
2323
# See: https://github.com/actions/setup-go/tree/v3#readme
24-
GO_VERSION: "1.19"
24+
GO_VERSION: "1.20"
2525

2626
jobs:
2727
# The build job is responsible for: configuring the environment, testing and compiling process

.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.19"
6+
GO_VERSION: "1.20"
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.19"
6+
GO_VERSION: "1.20"
77

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

.licensed.yml

+4
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,10 @@ sources:
55
apps:
66
- source_path: ./
77

8+
reviewed:
9+
go:
10+
- golang.org/x/crypto/curve25519
11+
812
# Source: https://github.com/arduino/tooling-project-assets/blob/main/workflow-templates/assets/check-dependencies/AGPL-3.0/.licensed.yml
913
allowed:
1014
# The following are based on: https://www.gnu.org/licenses/license-list.html#GPLCompatibleLicenses

.licenses/arduino-create-agent/go/golang.org/x/crypto/internal/alias.dep.yml renamed to .licenses/arduino-create-agent/go/golang.org/x/crypto/curve25519.dep.yml

+5-4
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,11 @@
11
---
2-
name: golang.org/x/crypto/internal/alias
2+
name: golang.org/x/crypto/curve25519
33
version: v0.9.0
44
type: go
5-
summary: Package alias implements memory aliasing tests.
6-
homepage: https://pkg.go.dev/golang.org/x/crypto/internal/alias
7-
license: bsd-3-clause
5+
summary: Package curve25519 provides an implementation of the X25519 function, which
6+
performs scalar multiplication on the elliptic curve known as Curve25519.
7+
homepage: https://pkg.go.dev/golang.org/x/crypto/curve25519
8+
license: other
89
licenses:
910
- sources: [email protected]/LICENSE
1011
text: |

go.mod

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module github.com/arduino/arduino-create-agent
22

3-
go 1.19
3+
go 1.20
44

55
require (
66
github.com/andela/gin-cors v0.0.0-20160928171741-e8c3436a37e2

0 commit comments

Comments
 (0)