Skip to content

Commit d81acbf

Browse files
authoredAug 20, 2022
Bump matrix to support latest go version (go1.19) (#231)
* Bump matrix to support latest go version (go1.19) * Fix comment
1 parent fdaf0eb commit d81acbf

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed
 

‎.github/workflows/build.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
strategy:
2626
fail-fast: false
2727
matrix:
28-
go: [1.16, 1.17, 1.18]
28+
go: [1.17, 1.18, 1.19]
2929
steps:
3030
- name: Checkout
3131
uses: actions/checkout@v3

‎cmd/jwt/main.go

+2-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,8 @@
33
//
44
// Example usage:
55
// The following will create and sign a token, then verify it and output the original claims.
6-
// echo {\"foo\":\"bar\"} | bin/jwt -key test/sample_key -alg RS256 -sign - | bin/jwt -key test/sample_key.pub -verify -
6+
//
7+
// echo {\"foo\":\"bar\"} | bin/jwt -key test/sample_key -alg RS256 -sign - | bin/jwt -key test/sample_key.pub -verify -
78
package main
89

910
import (

0 commit comments

Comments
 (0)