Skip to content

Commit

Permalink
Updates (#10)
Browse files Browse the repository at this point in the history
  • Loading branch information
mdouchement authored Jul 9, 2022
1 parent 1a1b734 commit 26046c1
Show file tree
Hide file tree
Showing 4 changed files with 114 additions and 229 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,20 +4,20 @@ on:
types: [created]
name: Build Release
env:
GO_VERSION: "^1.17.1"
TASK_VERSION: v3.7.3
TASK_SUM: 23e670ab136e25dad74b3c7d97900f7c2879c6874ccaae29e6fc041061be5fb4
GO_VERSION: "~1"
TASK_VERSION: v3.11.0
TASK_SUM: 8284fa89367e0bbb8ba5dcb90baa6826b7669c4a317e5b9a46711f7380075e21
jobs:
release:
name: Build binaries
runs-on: ubuntu-latest
steps:
#
- name: Install Go
uses: actions/setup-go@v2
uses: actions/setup-go@v3
with:
go-version: ${{ env.GO_VERSION }}
id: go
check-latest: true
#
- name: Tooling(checksum)
run: go install github.com/mdouchement/checksum@master
Expand Down
2 changes: 1 addition & 1 deletion Taskfile.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
version: '3'

vars:
VERSION: 0.2.2
VERSION: 0.2.3
REVISION: { sh: git rev-parse HEAD }

env:
Expand Down
57 changes: 37 additions & 20 deletions go.mod
Original file line number Diff line number Diff line change
@@ -1,32 +1,49 @@
module github.com/mdouchement/shigoto

go 1.16
go 1.18

require (
github.com/Masterminds/goutils v1.1.1 // indirect
github.com/Masterminds/semver v1.5.0 // indirect
github.com/Masterminds/sprig v2.22.0+incompatible
github.com/cespare/xxhash/v2 v2.1.2 // indirect
github.com/fsnotify/fsnotify v1.5.1 // indirect
github.com/gobs/args v0.0.0-20210311043657-b8c0b223be93
github.com/google/uuid v1.3.0 // indirect
github.com/huandu/xstrings v1.3.2 // indirect
github.com/imdario/mergo v0.3.12 // indirect
github.com/knadh/koanf v1.2.2
github.com/mattn/go-colorable v0.1.8 // indirect
github.com/mattn/go-isatty v0.0.14 // indirect
github.com/knadh/koanf v1.4.2
github.com/mdouchement/logger v0.0.0-20200719134033-63d0eda5567d
github.com/pelletier/go-toml v1.9.4 // indirect
github.com/pkg/errors v0.9.1
github.com/prometheus/common v0.30.0 // indirect
github.com/prometheus/procfs v0.7.3 // indirect
github.com/robfig/cron/v3 v3.0.1
github.com/sirupsen/logrus v1.8.1
github.com/slok/goresilience v0.2.0
github.com/spf13/cobra v1.2.1
github.com/traefik/yaegi v0.9.23
golang.org/x/crypto v0.0.0-20210817164053-32db794688a5 // indirect
golang.org/x/sys v0.0.0-20210906170528-6f6e22806c34 // indirect
google.golang.org/protobuf v1.27.1 // indirect
mvdan.cc/sh/v3 v3.3.1
github.com/spf13/cobra v1.5.0
github.com/traefik/yaegi v0.13.0
mvdan.cc/sh/v3 v3.5.1
)

require (
github.com/Masterminds/goutils v1.1.1 // indirect
github.com/Masterminds/semver v1.5.0 // indirect
github.com/beorn7/perks v1.0.1 // indirect
github.com/cespare/xxhash/v2 v2.1.2 // indirect
github.com/fsnotify/fsnotify v1.5.4 // 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.0 // indirect
github.com/mattn/go-colorable v0.1.12 // indirect
github.com/mattn/go-isatty v0.0.14 // indirect
github.com/matttproud/golang_protobuf_extensions v1.0.1 // 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.12.2 // indirect
github.com/prometheus/client_model v0.2.0 // indirect
github.com/prometheus/common v0.35.0 // indirect
github.com/prometheus/procfs v0.7.3 // indirect
github.com/spf13/pflag v1.0.5 // indirect
golang.org/x/crypto v0.0.0-20220622213112-05595931fe9d // indirect
golang.org/x/sync v0.0.0-20220601150217-0de741cfad7f // indirect
golang.org/x/sys v0.0.0-20220708085239-5a0f0661e09d // indirect
golang.org/x/term v0.0.0-20220526004731-065cf7ba2467 // indirect
google.golang.org/protobuf v1.28.0 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)
Loading

0 comments on commit 26046c1

Please sign in to comment.