Skip to content
This repository has been archived by the owner on Apr 12, 2024. It is now read-only.

chore: Consolidate go.mod into one file #30

Merged
merged 2 commits into from
Sep 13, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
38 changes: 0 additions & 38 deletions .github/workflows/plank-postmerge.yml

This file was deleted.

28 changes: 0 additions & 28 deletions .github/workflows/plank-premerge.yaml

This file was deleted.

2 changes: 0 additions & 2 deletions .github/workflows/transport-postmerge.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,6 @@ name: Transport Post-merge pipeline

on:
push:
paths-ignore:
- plank/**/*
branches:
- main

Expand Down
2 changes: 0 additions & 2 deletions .github/workflows/transport-premerge.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,6 @@ name: Transport Pre-merge pipeline

on:
pull_request:
paths-ignore:
- plank/**/*

jobs:
test:
Expand Down
31 changes: 24 additions & 7 deletions go.mod
Original file line number Diff line number Diff line change
@@ -1,14 +1,31 @@
module github.com/vmware/transport-go

go 1.13
go 1.16

require (
github.com/fatih/color v1.7.0
github.com/go-stomp/stomp v2.0.3+incompatible
github.com/google/uuid v1.1.1
github.com/eliukblau/pixterm v1.3.1
github.com/fatih/color v1.12.0
github.com/go-git/go-git/v5 v5.4.2
github.com/go-stomp/stomp v2.1.4+incompatible
github.com/google/uuid v1.3.0
github.com/gorilla/handlers v1.4.2
github.com/gorilla/mux v1.8.0
github.com/gorilla/websocket v1.4.1
github.com/mattn/go-colorable v0.1.8 // indirect
github.com/stretchr/testify v1.4.0
github.com/gorilla/websocket v1.4.2
github.com/lucasb-eyer/go-colorful v1.2.0 // indirect
github.com/magefile/mage v1.11.0 // indirect
github.com/mattn/go-isatty v0.0.13 // indirect
github.com/prometheus/client_golang v1.6.0
github.com/robfig/cron/v3 v3.0.1
github.com/sirupsen/logrus v1.8.0
github.com/spf13/cobra v1.2.1
github.com/spf13/pflag v1.0.5
github.com/spf13/viper v1.8.1
github.com/streadway/amqp v1.0.0
github.com/stretchr/objx v0.2.0 // indirect
github.com/stretchr/testify v1.7.0
github.com/urfave/cli v1.22.1
golang.org/x/crypto v0.0.0-20210817164053-32db794688a5
golang.org/x/net v0.0.0-20210805182204-aaa1db679c0d
golang.org/x/sys v0.0.0-20210630005230-0f9fa26af87c // indirect
golang.org/x/term v0.0.0-20210615171337-6886f2dfbf5b // indirect
)
760 changes: 745 additions & 15 deletions go.sum

Large diffs are not rendered by default.

33 changes: 0 additions & 33 deletions plank/go.mod

This file was deleted.

Loading