Skip to content

Commit af9f013

Browse files
author
Amit Shrivastav
committed
Updated ginkgo version to 2.12.1 and also updated go to 1.21.1
1 parent 73259d5 commit af9f013

File tree

315 files changed

+35055
-3994
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

315 files changed

+35055
-3994
lines changed

azure/azure.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
package azure
88

99
import (
10-
"code.cloudfoundry.org/lager"
10+
"code.cloudfoundry.org/lager/v3"
1111
"fmt"
1212
"github.com/Azure/azure-sdk-for-go/storage"
1313
"github.com/pivotal-cf/service-backup/process"

cmd/manual-backup/main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ import (
1111
"os/signal"
1212
"syscall"
1313

14-
"code.cloudfoundry.org/lager"
14+
"code.cloudfoundry.org/lager/v3"
1515
"github.com/pivotal-cf/service-backup/config"
1616
"github.com/pivotal-cf/service-backup/executor"
1717
"github.com/pivotal-cf/service-backup/process"

config/parse.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ package config
99
import (
1010
"io/ioutil"
1111

12-
"code.cloudfoundry.org/lager"
12+
"code.cloudfoundry.org/lager/v3"
1313
alerts "github.com/pivotal-cf/service-alerts-client/client"
1414
"gopkg.in/yaml.v2"
1515
)

config/parse_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
package config_test
88

99
import (
10-
"code.cloudfoundry.org/lager"
10+
"code.cloudfoundry.org/lager/v3"
1111
. "github.com/onsi/ginkgo/v2"
1212
. "github.com/onsi/gomega"
1313
alerts "github.com/pivotal-cf/service-alerts-client/client"

executor/dummy_executor.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
package executor
88

9-
import "code.cloudfoundry.org/lager"
9+
import "code.cloudfoundry.org/lager/v3"
1010

1111
type dummyExecutor struct {
1212
logger lager.Logger

executor/dummy_executor_test.go

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

1515
"github.com/onsi/gomega/gbytes"
1616

17-
"code.cloudfoundry.org/lager"
17+
"code.cloudfoundry.org/lager/v3"
1818
)
1919

2020
var _ = Describe("DummyExecutor", func() {

executor/executor.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ import (
1515
"sync"
1616
"time"
1717

18-
"code.cloudfoundry.org/lager"
18+
"code.cloudfoundry.org/lager/v3"
1919
"github.com/pivotal-cf/service-backup/process"
2020
"github.com/pivotal-cf/service-backup/upload"
2121
"github.com/satori/go.uuid"

executor/executor_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ import (
1212
"strings"
1313
"sync"
1414

15-
"code.cloudfoundry.org/lager"
15+
"code.cloudfoundry.org/lager/v3"
1616

1717
"path/filepath"
1818

gcs/gcs.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ import (
1515
"time"
1616

1717
"cloud.google.com/go/storage"
18-
"code.cloudfoundry.org/lager"
18+
"code.cloudfoundry.org/lager/v3"
1919
"github.com/pivotal-cf/service-backup/process"
2020
"google.golang.org/api/iterator"
2121
"google.golang.org/api/option"

gcs/gcs_integration_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ import (
1717
"time"
1818

1919
"cloud.google.com/go/storage"
20-
"code.cloudfoundry.org/lager"
20+
"code.cloudfoundry.org/lager/v3"
2121
. "github.com/onsi/ginkgo/v2"
2222
. "github.com/onsi/gomega"
2323
"github.com/pborman/uuid"

0 commit comments

Comments
 (0)