Skip to content

Commit 27b9afa

Browse files
authored
Merge pull request #56 from TankerHQ/mich/upgrade-go-1-21
chore: upgrade Go version to 1.21 and go mod tidy
2 parents 3e1b479 + 1c7aa38 commit 27b9afa

File tree

2 files changed

+7
-4
lines changed

2 files changed

+7
-4
lines changed

.github/workflows/checks.yml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ jobs:
66
runs-on: ubuntu-latest
77
strategy:
88
matrix:
9-
go-version: [ '1.20' ]
9+
go-version: [ '1.21' ]
1010
steps:
1111
- uses: actions/checkout@v1
1212
- name: Set up Go ${{ matrix.go-version }}
@@ -18,12 +18,15 @@ jobs:
1818

1919
coverage:
2020
runs-on: ubuntu-latest
21+
strategy:
22+
matrix:
23+
go-version: [ '1.21' ]
2124
steps:
2225
- uses: actions/checkout@v1
23-
- name: Set up Go 1.20
26+
- name: Set up Go ${{ matrix.go-version }}
2427
uses: actions/setup-go@v1
2528
with:
26-
go-version: '1.20'
29+
go-version: ${{ matrix.go-version }}
2730
- name: Run tests
2831
run: go test -coverprofile=coverage.txt -covermode=atomic ./...
2932
- name: Upload coverage to Codecov

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module github.com/TankerHQ/identity-go/v3
22

3-
go 1.20
3+
go 1.21
44

55
require (
66
github.com/iancoleman/orderedmap v0.3.0

0 commit comments

Comments
 (0)