-
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.
- Loading branch information
1 parent
ca26049
commit 444667b
Showing
5 changed files
with
121 additions
and
388 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
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 |
---|---|---|
|
@@ -4,7 +4,7 @@ | |
version: '3' | ||
|
||
vars: | ||
VERSION: 0.2.4 | ||
VERSION: 0.2.5 | ||
REVISION: { sh: git rev-parse HEAD } | ||
|
||
env: | ||
|
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,49 +1,53 @@ | ||
module github.com/mdouchement/shigoto | ||
|
||
go 1.18 | ||
go 1.21 | ||
|
||
// https://github.com/Masterminds/sprig/pull/377 | ||
replace github.com/imdario/mergo => github.com/darccio/mergo v0.3.11 | ||
|
||
require ( | ||
github.com/Masterminds/sprig v2.22.0+incompatible | ||
github.com/Masterminds/sprig/v3 v3.2.3 | ||
github.com/gobs/args v0.0.0-20210311043657-b8c0b223be93 | ||
github.com/knadh/koanf v1.4.3 | ||
github.com/mdouchement/logger v0.0.0-20200719134033-63d0eda5567d | ||
github.com/knadh/koanf v1.5.0 | ||
github.com/mdouchement/logger v0.0.0-20230808153046-a80667048783 | ||
github.com/pkg/errors v0.9.1 | ||
github.com/robfig/cron/v3 v3.0.1 | ||
github.com/sirupsen/logrus v1.9.0 | ||
github.com/sirupsen/logrus v1.9.3 | ||
github.com/slok/goresilience v0.2.0 | ||
github.com/spf13/cobra v1.6.0 | ||
github.com/traefik/yaegi v0.14.2 | ||
mvdan.cc/sh/v3 v3.5.1 | ||
github.com/spf13/cobra v1.7.0 | ||
github.com/traefik/yaegi v0.15.1 | ||
mvdan.cc/sh/v3 v3.7.0 | ||
) | ||
|
||
require ( | ||
github.com/Masterminds/goutils v1.1.1 // indirect | ||
github.com/Masterminds/semver v1.5.0 // indirect | ||
github.com/Masterminds/semver/v3 v3.2.1 // indirect | ||
github.com/beorn7/perks v1.0.1 // indirect | ||
github.com/cespare/xxhash/v2 v2.1.2 // indirect | ||
github.com/fsnotify/fsnotify v1.6.0 // indirect | ||
github.com/golang/protobuf v1.5.2 // indirect | ||
github.com/google/uuid v1.3.0 // indirect | ||
github.com/huandu/xstrings v1.3.2 // indirect | ||
github.com/imdario/mergo v0.3.13 // indirect | ||
github.com/inconshreveable/mousetrap v1.0.1 // indirect | ||
github.com/cespare/xxhash/v2 v2.2.0 // indirect | ||
github.com/fsnotify/fsnotify v1.7.0 // indirect | ||
github.com/google/uuid v1.4.0 // indirect | ||
github.com/huandu/xstrings v1.4.0 // indirect | ||
github.com/imdario/mergo v1.0.0 // indirect | ||
github.com/inconshreveable/mousetrap v1.1.0 // indirect | ||
github.com/mattn/go-colorable v0.1.13 // indirect | ||
github.com/mattn/go-isatty v0.0.16 // indirect | ||
github.com/matttproud/golang_protobuf_extensions v1.0.2 // indirect | ||
github.com/mattn/go-isatty v0.0.20 // indirect | ||
github.com/matttproud/golang_protobuf_extensions/v2 v2.0.0 // indirect | ||
github.com/mgutz/ansi v0.0.0-20200706080929-d51e80ef957d // indirect | ||
github.com/mitchellh/copystructure v1.2.0 // indirect | ||
github.com/mitchellh/mapstructure v1.5.0 // indirect | ||
github.com/mitchellh/reflectwalk v1.0.2 // indirect | ||
github.com/pelletier/go-toml v1.9.5 // indirect | ||
github.com/prometheus/client_golang v1.13.0 // indirect | ||
github.com/prometheus/client_model v0.2.0 // indirect | ||
github.com/prometheus/common v0.37.0 // indirect | ||
github.com/prometheus/procfs v0.8.0 // indirect | ||
github.com/prometheus/client_golang v1.17.0 // indirect | ||
github.com/prometheus/client_model v0.5.0 // indirect | ||
github.com/prometheus/common v0.45.0 // indirect | ||
github.com/prometheus/procfs v0.12.0 // indirect | ||
github.com/shopspring/decimal v1.3.1 // indirect | ||
github.com/spf13/cast v1.5.1 // indirect | ||
github.com/spf13/pflag v1.0.5 // indirect | ||
golang.org/x/crypto v0.0.0-20221012134737-56aed061732a // indirect | ||
golang.org/x/sync v0.0.0-20220929204114-8fcdb60fdcc0 // indirect | ||
golang.org/x/sys v0.0.0-20221013171732-95e765b1cc43 // indirect | ||
golang.org/x/term v0.0.0-20220919170432-7a66f970e087 // indirect | ||
google.golang.org/protobuf v1.28.1 // indirect | ||
golang.org/x/crypto v0.14.0 // indirect | ||
golang.org/x/sync v0.4.0 // indirect | ||
golang.org/x/sys v0.13.0 // indirect | ||
golang.org/x/term v0.13.0 // indirect | ||
google.golang.org/protobuf v1.31.0 // indirect | ||
gopkg.in/yaml.v3 v3.0.1 // indirect | ||
) |
Oops, something went wrong.