Skip to content

Commit 0477320

Browse files
authored
Merge pull request #1041 from cpanato/update-deps
dependencies: update several deps
2 parents 10eba47 + 4e9c0d8 commit 0477320

File tree

26 files changed

+246
-75
lines changed

26 files changed

+246
-75
lines changed

api/v1alpha3/azuremachine_validation.go

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

2323
"github.com/google/uuid"
2424

25-
"github.com/Azure/azure-sdk-for-go/services/compute/mgmt/2020-06-01/compute"
25+
"github.com/Azure/azure-sdk-for-go/services/compute/mgmt/2020-06-30/compute"
2626
"golang.org/x/crypto/ssh"
2727
"k8s.io/apimachinery/pkg/util/validation/field"
2828
)

api/v1alpha3/azuremachine_validation_test.go

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

2626
"github.com/google/uuid"
2727

28-
"github.com/Azure/azure-sdk-for-go/services/compute/mgmt/2020-06-01/compute"
28+
"github.com/Azure/azure-sdk-for-go/services/compute/mgmt/2020-06-30/compute"
2929
"github.com/Azure/go-autorest/autorest/to"
3030

3131
. "github.com/onsi/gomega"

cloud/converters/image.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ package converters
1919
import (
2020
"fmt"
2121

22-
"github.com/Azure/azure-sdk-for-go/services/compute/mgmt/2020-06-01/compute"
22+
"github.com/Azure/azure-sdk-for-go/services/compute/mgmt/2020-06-30/compute"
2323
"github.com/pkg/errors"
2424

2525
infrav1 "sigs.k8s.io/cluster-api-provider-azure/api/v1alpha3"

cloud/converters/vm.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ limitations under the License.
1717
package converters
1818

1919
import (
20-
"github.com/Azure/azure-sdk-for-go/services/compute/mgmt/2020-06-01/compute"
20+
"github.com/Azure/azure-sdk-for-go/services/compute/mgmt/2020-06-30/compute"
2121
"github.com/Azure/go-autorest/autorest/to"
2222
infrav1 "sigs.k8s.io/cluster-api-provider-azure/api/v1alpha3"
2323
)

cloud/converters/vmss.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ limitations under the License.
1717
package converters
1818

1919
import (
20-
"github.com/Azure/azure-sdk-for-go/services/compute/mgmt/2020-06-01/compute"
20+
"github.com/Azure/azure-sdk-for-go/services/compute/mgmt/2020-06-30/compute"
2121
"github.com/Azure/go-autorest/autorest/to"
2222

2323
infrav1 "sigs.k8s.io/cluster-api-provider-azure/api/v1alpha3"

cloud/converters/vmss_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ import (
2020
"fmt"
2121
"testing"
2222

23-
"github.com/Azure/azure-sdk-for-go/services/compute/mgmt/2020-06-01/compute"
23+
"github.com/Azure/azure-sdk-for-go/services/compute/mgmt/2020-06-30/compute"
2424
"github.com/Azure/go-autorest/autorest/to"
2525
"github.com/onsi/gomega"
2626

cloud/services/disks/client.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ package disks
1919
import (
2020
"context"
2121

22-
"github.com/Azure/azure-sdk-for-go/services/compute/mgmt/2020-06-01/compute"
22+
"github.com/Azure/azure-sdk-for-go/services/compute/mgmt/2020-06-30/compute"
2323
"github.com/Azure/go-autorest/autorest"
2424
azure "sigs.k8s.io/cluster-api-provider-azure/cloud"
2525
"sigs.k8s.io/cluster-api-provider-azure/util/tele"

cloud/services/networkinterfaces/networkinterfaces_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ import (
2525
azure "sigs.k8s.io/cluster-api-provider-azure/cloud"
2626
gomockinternal "sigs.k8s.io/cluster-api-provider-azure/internal/test/matchers/gomock"
2727

28-
"github.com/Azure/azure-sdk-for-go/services/compute/mgmt/2020-06-01/compute"
28+
"github.com/Azure/azure-sdk-for-go/services/compute/mgmt/2020-06-30/compute"
2929
"github.com/Azure/azure-sdk-for-go/services/network/mgmt/2019-06-01/network"
3030
"github.com/Azure/go-autorest/autorest"
3131
"github.com/Azure/go-autorest/autorest/to"

cloud/services/resourceskus/cache.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ import (
2222
"sort"
2323
"strings"
2424

25-
"github.com/Azure/azure-sdk-for-go/services/compute/mgmt/2020-06-01/compute"
25+
"github.com/Azure/azure-sdk-for-go/services/compute/mgmt/2020-06-30/compute"
2626
"github.com/pkg/errors"
2727

2828
azure "sigs.k8s.io/cluster-api-provider-azure/cloud"

cloud/services/resourceskus/cache_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ import (
2020
"context"
2121
"testing"
2222

23-
"github.com/Azure/azure-sdk-for-go/services/compute/mgmt/2020-06-01/compute"
23+
"github.com/Azure/azure-sdk-for-go/services/compute/mgmt/2020-06-30/compute"
2424
"github.com/Azure/go-autorest/autorest/to"
2525
"github.com/google/go-cmp/cmp"
2626
"github.com/google/go-cmp/cmp/cmpopts"

0 commit comments

Comments
 (0)