Skip to content

Commit

Permalink
Bump go 1.20 (#814)
Browse files Browse the repository at this point in the history
* bump GO to 1.20

* fix license cache
  • Loading branch information
umbynos committed Aug 28, 2023
1 parent d170a5e commit 1d88dcb
Show file tree
Hide file tree
Showing 9 changed files with 16 additions and 11 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/check-go-dependencies-task.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: Check Go Dependencies

env:
# See: https://github.com/actions/setup-go/tree/v3#readme
GO_VERSION: "1.19"
GO_VERSION: "1.20"

# See: https://docs.github.com/actions/using-workflows/events-that-trigger-workflows
on:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/check-go-task.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: Check Go

env:
# See: https://github.com/actions/setup-go/tree/main#supported-version-syntax
GO_VERSION: "1.19"
GO_VERSION: "1.20"

# See: https://docs.github.com/actions/using-workflows/events-that-trigger-workflows
on:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish-go-tester-task.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ on:
repository_dispatch:

env:
GO_VERSION: "1.19"
GO_VERSION: "1.20"

jobs:
run-determination:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ env:
AC_USERNAME: ${{ secrets.AC_USERNAME }} # used by gon
AC_PASSWORD: ${{ secrets.AC_PASSWORD }} # used by gon
# See: https://github.com/actions/setup-go/tree/v3#readme
GO_VERSION: "1.19"
GO_VERSION: "1.20"

jobs:
# The build job is responsible for: configuring the environment, testing and compiling process
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test-go-integration-task.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: Test Integration

env:
# See: https://github.com/actions/setup-go/tree/v2#readme
GO_VERSION: "1.19"
GO_VERSION: "1.20"
# See: https://github.com/actions/setup-python/tree/v2#available-versions-of-python
PYTHON_VERSION: "3.9"

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test-go-task.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: Test Go

env:
# See: https://github.com/actions/setup-go/tree/v2#readme
GO_VERSION: "1.19"
GO_VERSION: "1.20"

# See: https://docs.github.com/en/free-pro-team@latest/actions/reference/events-that-trigger-workflows
on:
Expand Down
4 changes: 4 additions & 0 deletions .licensed.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,10 @@ sources:
apps:
- source_path: ./

reviewed:
go:
- golang.org/x/crypto/curve25519

# Source: https://github.com/arduino/tooling-project-assets/blob/main/workflow-templates/assets/check-dependencies/AGPL-3.0/.licensed.yml
allowed:
# The following are based on: https://www.gnu.org/licenses/license-list.html#GPLCompatibleLicenses
Expand Down
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
---
name: golang.org/x/crypto/internal/alias
name: golang.org/x/crypto/curve25519
version: v0.9.0
type: go
summary: Package alias implements memory aliasing tests.
homepage: https://pkg.go.dev/golang.org/x/crypto/internal/alias
license: bsd-3-clause
summary: Package curve25519 provides an implementation of the X25519 function, which
performs scalar multiplication on the elliptic curve known as Curve25519.
homepage: https://pkg.go.dev/golang.org/x/crypto/curve25519
license: other
licenses:
- sources: crypto@v0.9.0/LICENSE
text: |
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/arduino/arduino-create-agent

go 1.19
go 1.20

require (
github.com/andela/gin-cors v0.0.0-20160928171741-e8c3436a37e2
Expand Down

0 comments on commit 1d88dcb

Please sign in to comment.