Skip to content

Commit 43fed99

Browse files
authored
Merge pull request #22 from smallstep/endpoint-id
Endpoint ID
2 parents 6e57bd2 + 18e4c31 commit 43fed99

File tree

5 files changed

+200
-188
lines changed

5 files changed

+200
-188
lines changed

.github/workflows/test.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
runs-on: ubuntu-20.04
1515
strategy:
1616
matrix:
17-
go: [ '1.17', '1.18' ]
17+
go: [ '1.18', '1.19' ]
1818
steps:
1919
-
2020
name: Checkout
@@ -29,7 +29,7 @@ jobs:
2929
uses: golangci/golangci-lint-action@v2
3030
with:
3131
# Optional: version of golangci-lint to use in form of v1.2 or v1.2.3 or `latest` to use the latest version
32-
version: 'v1.45.0'
32+
version: 'v1.48'
3333

3434
# Optional: working directory, useful for monorepos
3535
# working-directory: somedir
@@ -54,7 +54,7 @@ jobs:
5454
run: go test -race -coverpkg=./... -coverprofile=coverage.out -covermode=atomic ./...
5555
-
5656
name: Codecov
57-
if: matrix.go == '1.18'
57+
if: matrix.go == '1.19'
5858
uses: codecov/[email protected]
5959
with:
6060
file: ./coverage.out # optional

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ module go.step.sm/linkedca
33
go 1.16
44

55
require (
6-
github.com/stretchr/testify v1.7.1 // indirect
6+
github.com/stretchr/testify v1.7.1
77
google.golang.org/grpc v1.38.0
88
google.golang.org/protobuf v1.26.0
99
)

go.sum

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -86,6 +86,7 @@ google.golang.org/protobuf v1.25.0/go.mod h1:9JNX74DMeImyA3h4bdi1ymwjUzf21/xIlba
8686
google.golang.org/protobuf v1.26.0-rc.1/go.mod h1:jlhhOSvTdKEhbULTjvd4ARK9grFBp09yW+WbY/TyQbw=
8787
google.golang.org/protobuf v1.26.0 h1:bxAC2xTBsZGibn2RTntX0oH50xLsqy1OxA9tTL3p/lk=
8888
google.golang.org/protobuf v1.26.0/go.mod h1:9q0QmTI4eRPtz6boOQmLYwt+qCgq0jsYwAQnmE0givc=
89+
gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405 h1:yhCVgyC4o1eVCa2tZl7eS0r+SDo693bJlVdllGtEeKM=
8990
gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0=
9091
gopkg.in/yaml.v2 v2.2.2/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI=
9192
gopkg.in/yaml.v3 v3.0.0-20200313102051-9f266ea9e77c h1:dUUwHk2QECo/6vqA44rthZ8ie2QXMNeKRTHCNY2nXvo=

0 commit comments

Comments
 (0)