Skip to content

Commit 2207662

Browse files
authored
Merge pull request #62 from fullstack-devops/bugfix/release-workflow
fix release workflow + upgrades
2 parents 454fda1 + 1911270 commit 2207662

File tree

3 files changed

+32
-403
lines changed

3 files changed

+32
-403
lines changed

.github/workflows/Release.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ on:
55
branches:
66
- "main"
77
paths:
8+
- ".github/workflows/**"
89
- "src/**"
910
- "tests/**"
1011
- "go.**"

go.mod

Lines changed: 12 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -4,35 +4,26 @@ go 1.17
44

55
require (
66
github.com/google/go-github/v39 v39.2.0
7-
github.com/xanzy/go-gitlab v0.51.1
7+
github.com/xanzy/go-gitlab v0.54.3
88
golang.org/x/oauth2 v0.0.0-20211104180415-d3ed0bb246c8
99
gopkg.in/yaml.v2 v2.4.0
1010
)
1111

1212
require (
13-
github.com/Masterminds/semver/v3 v3.1.1 // indirect
14-
github.com/fsnotify/fsnotify v1.5.1 // indirect
13+
github.com/fatih/color v1.13.0 // indirect
1514
github.com/golang/protobuf v1.5.2 // indirect
16-
github.com/google/go-cmp v0.5.6 // indirect
15+
github.com/google/go-cmp v0.5.7 // indirect
1716
github.com/google/go-querystring v1.1.0 // indirect
1817
github.com/hashicorp/go-cleanhttp v0.5.2 // indirect
19-
github.com/hashicorp/go-retryablehttp v0.6.8 // indirect
20-
github.com/hashicorp/hcl v1.0.0 // indirect
21-
github.com/magiconair/properties v1.8.5 // indirect
22-
github.com/mitchellh/mapstructure v1.4.3 // indirect
23-
github.com/pelletier/go-toml v1.9.4 // indirect
24-
github.com/spf13/afero v1.6.0 // indirect
25-
github.com/spf13/cast v1.4.1 // indirect
26-
github.com/spf13/jwalterweatherman v1.1.0 // indirect
27-
github.com/spf13/pflag v1.0.5 // indirect
28-
github.com/spf13/viper v1.10.1 // indirect
29-
github.com/subosito/gotenv v1.2.0 // indirect
30-
golang.org/x/crypto v0.0.0-20210817164053-32db794688a5 // indirect
31-
golang.org/x/net v0.0.0-20210813160813-60bc85c4be6d // indirect
32-
golang.org/x/sys v0.0.0-20211210111614-af8b64212486 // indirect
33-
golang.org/x/text v0.3.7 // indirect
34-
golang.org/x/time v0.0.0-20191024005414-555d28b269f0 // indirect
18+
github.com/hashicorp/go-hclog v1.0.0 // indirect
19+
github.com/hashicorp/go-retryablehttp v0.7.0 // indirect
20+
github.com/mattn/go-colorable v0.1.12 // indirect
21+
github.com/mattn/go-isatty v0.0.14 // indirect
22+
github.com/stretchr/testify v1.7.0 // indirect
23+
golang.org/x/crypto v0.0.0-20211108221036-ceb1ce70b4fa // indirect
24+
golang.org/x/net v0.0.0-20220121210141-e204ce36a2ba // indirect
25+
golang.org/x/time v0.0.0-20211116232009-f0f3c7e86c11 // indirect
3526
google.golang.org/appengine v1.6.7 // indirect
3627
google.golang.org/protobuf v1.27.1 // indirect
37-
gopkg.in/ini.v1 v1.66.2 // indirect
28+
gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b // indirect
3829
)

0 commit comments

Comments
 (0)