-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #56 from oidc-mytoken/prerel
0.6.1
- Loading branch information
Showing
19 changed files
with
191 additions
and
96 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
name: codebase-sync | ||
|
||
on: | ||
- push | ||
- delete | ||
|
||
jobs: | ||
sync: | ||
runs-on: ubuntu-latest | ||
name: Git Repo Sync | ||
steps: | ||
- uses: actions/checkout@v2 | ||
with: | ||
fetch-depth: 0 | ||
- uses: wangchucheng/git-repo-sync@v0.1.0 | ||
with: | ||
# Such as https://github.com/wangchucheng/git-repo-sync.git | ||
target-url: https://codebase.helmholtz.cloud/m-team/oidc/mytoken/client.git | ||
# Such as wangchucheng | ||
target-username: gabriel.zachmann | ||
# You can store token in your project's 'Setting > Secrets' and reference the name here. Such as ${{ secrets.ACCESS_TOKEN }} | ||
target-token: ${{ secrets.CODEBASE_TOKEN }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,21 +1,46 @@ | ||
module github.com/oidc-mytoken/client | ||
|
||
go 1.16 | ||
go 1.22 | ||
|
||
require ( | ||
github.com/Songmu/prompter v0.5.1 | ||
github.com/gliderlabs/ssh v0.3.5 | ||
github.com/mdp/qrterminal/v3 v3.0.0 | ||
github.com/oidc-mytoken/api v0.10.0 | ||
github.com/oidc-mytoken/lib v0.7.0 | ||
github.com/gliderlabs/ssh v0.3.7 | ||
github.com/mdp/qrterminal/v3 v3.2.0 | ||
github.com/oidc-mytoken/api v0.11.1 | ||
github.com/oidc-mytoken/lib v0.7.1 | ||
github.com/oidc-mytoken/utils v0.1.2 | ||
github.com/olekukonko/tablewriter v0.0.5 | ||
github.com/pkg/errors v0.9.1 | ||
github.com/sirupsen/logrus v1.9.0 | ||
github.com/sirupsen/logrus v1.9.3 | ||
github.com/urfave/cli/v2 v2.3.1-0.20211205195634-e8d81738896c | ||
golang.org/x/net v0.0.0-20220906165146-f3363e06e74c | ||
golang.org/x/term v0.0.0-20220722155259-a9ba230a4035 | ||
golang.org/x/net v0.27.0 | ||
golang.org/x/term v0.22.0 | ||
gopkg.in/yaml.v3 v3.0.1 | ||
) | ||
|
||
require ( | ||
github.com/andybalholm/brotli v1.0.4 // indirect | ||
github.com/anmitsu/go-shlex v0.0.0-20200514113438-38f4b401e2be // indirect | ||
github.com/coreos/go-oidc/v3 v3.4.0 // indirect | ||
github.com/cpuguy83/go-md2man/v2 v2.0.0-20190314233015-f79a8a8ca69d // indirect | ||
github.com/evanphx/json-patch/v5 v5.6.0 // indirect | ||
github.com/go-resty/resty/v2 v2.7.0 // indirect | ||
github.com/golang-jwt/jwt v3.2.2+incompatible // indirect | ||
github.com/golang/protobuf v1.5.2 // indirect | ||
github.com/klauspost/compress v1.15.9 // indirect | ||
github.com/mattn/go-isatty v0.0.20 // indirect | ||
github.com/mattn/go-runewidth v0.0.9 // indirect | ||
github.com/russross/blackfriday/v2 v2.0.1 // indirect | ||
github.com/shurcooL/sanitized_anchor_name v1.0.0 // indirect | ||
github.com/valyala/bytebufferpool v1.0.0 // indirect | ||
github.com/valyala/fasthttp v1.41.0 // indirect | ||
golang.org/x/crypto v0.25.0 // indirect | ||
golang.org/x/oauth2 v0.0.0-20220822191816-0ebed06d0094 // indirect | ||
golang.org/x/sys v0.22.0 // indirect | ||
google.golang.org/appengine v1.6.7 // indirect | ||
google.golang.org/protobuf v1.33.0 // indirect | ||
gopkg.in/square/go-jose.v2 v2.6.0 // indirect | ||
rsc.io/qr v0.2.0 // indirect | ||
) | ||
|
||
replace github.com/urfave/cli/v2 => github.com/zachmann/cli/v2 v2.3.1-0.20211220102037-d619fd40a704 |
Oops, something went wrong.