Skip to content

Commit 691ba58

Browse files
committed
correct imports to use v3 of this library
1 parent 1c60dfb commit 691ba58

File tree

7 files changed

+7
-7
lines changed

7 files changed

+7
-7
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ Based on a couple assumptions, this library can replace all instances in an ECS
77
any of the running services.
88

99
This process is available as:
10-
- A Go Module: `import "github.com/silinternational/ecs-ami-deploy/v2"`
10+
- A Go Module: `import "github.com/silinternational/ecs-ami-deploy/v3"`
1111
- A command line application. See `cli/` directory
1212

1313
## Why did we build this?

cli/cmd/latest-ami.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import (
77

88
"github.com/spf13/cobra"
99

10-
ead "github.com/silinternational/ecs-ami-deploy/v2"
10+
ead "github.com/silinternational/ecs-ami-deploy/v3"
1111
)
1212

1313
var AMIFilter string

cli/cmd/list-clusters.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import (
55
"os"
66
"text/tabwriter"
77

8-
ead "github.com/silinternational/ecs-ami-deploy/v2"
8+
ead "github.com/silinternational/ecs-ami-deploy/v3"
99
"github.com/spf13/cobra"
1010
)
1111

cli/cmd/upgrade-cluster.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import (
77

88
"github.com/spf13/cobra"
99

10-
ead "github.com/silinternational/ecs-ami-deploy/v2"
10+
ead "github.com/silinternational/ecs-ami-deploy/v3"
1111
)
1212

1313
var (

cli/main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package main
33
import (
44
"fmt"
55

6-
"github.com/silinternational/ecs-ami-deploy/v2/cli/cmd"
6+
"github.com/silinternational/ecs-ami-deploy/v3/cli/cmd"
77
)
88

99
var (

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
module github.com/silinternational/ecs-ami-deploy/v2
1+
module github.com/silinternational/ecs-ami-deploy/v3
22

33
go 1.21
44

upgrader.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import (
1010
"strings"
1111
"time"
1212

13-
"github.com/silinternational/ecs-ami-deploy/v2/internal"
13+
"github.com/silinternational/ecs-ami-deploy/v3/internal"
1414

1515
"github.com/aws/aws-sdk-go-v2/aws"
1616
"github.com/aws/aws-sdk-go-v2/service/autoscaling"

0 commit comments

Comments
 (0)