Skip to content
This repository has been archived by the owner on Oct 26, 2023. It is now read-only.

Commit

Permalink
chore: require newer golang version when running tests
Browse files Browse the repository at this point in the history
This will hopefully address the "Test with Coverage: malformed module path
"crypto/ecdh": missing dot in first path element" issue.  The required
version is based on fact commit that introduced crypto/ecdh started it's
exsistence in the go1.20.

    go-sources $ git tag --contain d88d91e32e1440307369d50ba17ce622399a8bc1
    go1.20

Reference: golang/go@d88d91e
Signed-off-by: Sami Kerola <kerolasa@iki.fi>
  • Loading branch information
kerolasa authored and bwesterb committed Sep 26, 2023
1 parent 8084967 commit f39fa01
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/go.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
- name: Set up Go 1.x
uses: actions/setup-go@v2
with:
go-version: ^1.13
go-version: '>=1.20.0'
id: go

- name: Check out code into the Go module directory
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
- name: Set up Go
uses: actions/setup-go@v1
with:
go-version: '1.13'
go-version: '>=1.20.0'

- name: Check out code
uses: actions/checkout@v2
Expand Down

0 comments on commit f39fa01

Please sign in to comment.