Skip to content

Commit

Permalink
Bump matrix to support latest go version (go1.19) (#231)
Browse files Browse the repository at this point in the history
* Bump matrix to support latest go version (go1.19)

* Fix comment
  • Loading branch information
mfridman committed Aug 20, 2022
1 parent fdaf0eb commit d81acbf
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Expand Up @@ -25,7 +25,7 @@ jobs:
strategy:
fail-fast: false
matrix:
go: [1.16, 1.17, 1.18]
go: [1.17, 1.18, 1.19]
steps:
- name: Checkout
uses: actions/checkout@v3
Expand Down
3 changes: 2 additions & 1 deletion cmd/jwt/main.go
Expand Up @@ -3,7 +3,8 @@
//
// Example usage:
// The following will create and sign a token, then verify it and output the original claims.
// echo {\"foo\":\"bar\"} | bin/jwt -key test/sample_key -alg RS256 -sign - | bin/jwt -key test/sample_key.pub -verify -
//
// echo {\"foo\":\"bar\"} | bin/jwt -key test/sample_key -alg RS256 -sign - | bin/jwt -key test/sample_key.pub -verify -
package main

import (
Expand Down

0 comments on commit d81acbf

Please sign in to comment.