Skip to content

Commit

Permalink
Go & go mod bumps (#117)
Browse files Browse the repository at this point in the history
* Go & go mod bumps

* fix logrus imports

* more dep bumps

* Use go 1.16 for github actions too

Co-authored-by: svc-excavator-bot <[email protected]>
  • Loading branch information
holtwilkins and svc-excavator-bot authored Oct 1, 2021
1 parent 82a1011 commit cdfdd3d
Show file tree
Hide file tree
Showing 641 changed files with 104,428 additions and 26,738 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: 1.14
go-version: 1.16

- name: Cache Godel assets
uses: actions/cache@v2
Expand Down Expand Up @@ -56,7 +56,7 @@ jobs:
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: 1.14
go-version: 1.16

- name: Cache Godel assets
uses: actions/cache@v2
Expand Down
1 change: 1 addition & 0 deletions .palantir/go-version
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
go1.16.6
4 changes: 2 additions & 2 deletions Gopkg.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion bouncer/asgset.go
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,10 @@ import (
"strings"
"time"

log "github.com/Sirupsen/logrus"
"github.com/aws/aws-sdk-go/service/autoscaling"
"github.com/palantir/bouncer/aws"
"github.com/pkg/errors"
log "github.com/sirupsen/logrus"
)

// ASGSet has a slice of ASG objects and some functions against them
Expand Down
2 changes: 1 addition & 1 deletion bouncer/command.go
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@ import (
"strings"
"time"

log "github.com/Sirupsen/logrus"
"github.com/pkg/errors"
log "github.com/sirupsen/logrus"
)

func splitCommandString(fullCommand string) (string, []string) {
Expand Down
2 changes: 1 addition & 1 deletion bouncer/instance.go
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,11 @@ package bouncer
import (
"time"

log "github.com/Sirupsen/logrus"
"github.com/aws/aws-sdk-go/service/autoscaling"
"github.com/aws/aws-sdk-go/service/ec2"
"github.com/palantir/bouncer/aws"
"github.com/pkg/errors"
log "github.com/sirupsen/logrus"
)

// Instance tracks the AWS representations of an EC2 instance as well as the metadata we care about it
Expand Down
2 changes: 1 addition & 1 deletion bouncer/runner.go
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,10 @@ import (
"strings"
"time"

log "github.com/Sirupsen/logrus"
"github.com/aws/aws-sdk-go/service/autoscaling"
"github.com/palantir/bouncer/aws"
"github.com/pkg/errors"
log "github.com/sirupsen/logrus"
)

// RunnerOpts is user-supplied options to any flavor of runner
Expand Down
2 changes: 1 addition & 1 deletion canary/runner.go
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@ package canary
import (
"os"

log "github.com/Sirupsen/logrus"
"github.com/palantir/bouncer/bouncer"
"github.com/pkg/errors"
log "github.com/sirupsen/logrus"
)

// Runner holds data for a particular canary run
Expand Down
2 changes: 1 addition & 1 deletion cmd/canary.go
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,10 @@
package cmd

import (
log "github.com/Sirupsen/logrus"
"github.com/palantir/bouncer/bouncer"
"github.com/palantir/bouncer/canary"
"github.com/pkg/errors"
log "github.com/sirupsen/logrus"
"github.com/spf13/cobra"
"github.com/spf13/viper"
)
Expand Down
2 changes: 1 addition & 1 deletion cmd/full.go
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,10 @@
package cmd

import (
log "github.com/Sirupsen/logrus"
"github.com/palantir/bouncer/bouncer"
"github.com/palantir/bouncer/full"
"github.com/pkg/errors"
log "github.com/sirupsen/logrus"
"github.com/spf13/cobra"
"github.com/spf13/viper"
)
Expand Down
2 changes: 1 addition & 1 deletion cmd/rolling.go
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,10 @@
package cmd

import (
log "github.com/Sirupsen/logrus"
"github.com/palantir/bouncer/bouncer"
"github.com/palantir/bouncer/rolling"
"github.com/pkg/errors"
log "github.com/sirupsen/logrus"
"github.com/spf13/cobra"
"github.com/spf13/viper"
)
Expand Down
2 changes: 1 addition & 1 deletion cmd/root.go
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@ import (
"strings"
"time"

log "github.com/Sirupsen/logrus"
"github.com/pkg/errors"
log "github.com/sirupsen/logrus"
"github.com/spf13/cobra"
"github.com/spf13/viper"
validator "gopkg.in/go-playground/validator.v9"
Expand Down
2 changes: 1 addition & 1 deletion cmd/serial.go
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,10 @@
package cmd

import (
log "github.com/Sirupsen/logrus"
"github.com/palantir/bouncer/bouncer"
"github.com/palantir/bouncer/serial"
"github.com/pkg/errors"
log "github.com/sirupsen/logrus"
"github.com/spf13/cobra"
"github.com/spf13/viper"
)
Expand Down
2 changes: 1 addition & 1 deletion cmd/slow-canary.go
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,10 @@
package cmd

import (
log "github.com/Sirupsen/logrus"
"github.com/palantir/bouncer/bouncer"
"github.com/palantir/bouncer/slowcanary"
"github.com/pkg/errors"
log "github.com/sirupsen/logrus"
"github.com/spf13/cobra"
"github.com/spf13/viper"
)
Expand Down
2 changes: 1 addition & 1 deletion full/runner.go
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@ package full
import (
"os"

log "github.com/Sirupsen/logrus"
"github.com/palantir/bouncer/bouncer"
"github.com/pkg/errors"
log "github.com/sirupsen/logrus"
)

// Runner holds data for a particular full run
Expand Down
21 changes: 10 additions & 11 deletions go.mod
Original file line number Diff line number Diff line change
@@ -1,18 +1,17 @@
module github.com/palantir/bouncer

go 1.14
go 1.16

require (
github.com/Sirupsen/logrus v0.11.3-0.20170215164324-7f4b1adc7917
github.com/aws/aws-sdk-go v1.38.59
github.com/go-playground/locales v0.11.2-0.20170327191450-1e5f1161c641 // indirect
github.com/go-playground/universal-translator v0.16.1-0.20170327191703-71201497bace // indirect
github.com/niemeyer/pretty v0.0.0-20200227124842-a10e7caefd8e // indirect
github.com/aws/aws-sdk-go v1.40.53
github.com/go-playground/universal-translator v0.18.0 // indirect
github.com/leodido/go-urn v1.2.1 // indirect
github.com/pkg/errors v0.9.1
github.com/spf13/cobra v1.1.3
github.com/spf13/viper v1.7.1
github.com/stretchr/testify v1.5.1
gopkg.in/check.v1 v1.0.0-20200227125254-8fa46927fb4f // indirect
github.com/sirupsen/logrus v1.8.1
github.com/spf13/cobra v1.2.1
github.com/spf13/viper v1.9.0
github.com/stretchr/testify v1.7.0
gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c // indirect
gopkg.in/go-playground/assert.v1 v1.2.1 // indirect
gopkg.in/go-playground/validator.v9 v9.3.5
gopkg.in/go-playground/validator.v9 v9.31.0
)
Loading

0 comments on commit cdfdd3d

Please sign in to comment.