Skip to content

Commit

Permalink
Bump matrix to support latest go version (go1.19) (golang-jwt#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 authored and oxisto committed Feb 21, 2023
1 parent ab729b5 commit 1754f74
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 1754f74

Please sign in to comment.