Skip to content

Commit 778db78

Browse files
fix: bump dependency
1 parent 6be0302 commit 778db78

File tree

3 files changed

+4
-2
lines changed

3 files changed

+4
-2
lines changed

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ require (
2626
github.com/mattn/go-isatty v0.0.20
2727
github.com/moby/buildkit v0.13.2
2828
github.com/opencontainers/go-digest v1.0.0
29-
github.com/scaleway/scaleway-sdk-go v1.0.0-beta.30.0.20241016074915-cfe16eadece2
29+
github.com/scaleway/scaleway-sdk-go v1.0.0-beta.30.0.20241017133226-2eefb481a740
3030
github.com/skratchdot/open-golang v0.0.0-20200116055534-eef842397966
3131
github.com/spf13/cobra v1.8.1
3232
github.com/spf13/pflag v1.0.5

go.sum

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -467,6 +467,8 @@ github.com/sabhiram/go-gitignore v0.0.0-20210923224102-525f6e181f06 h1:OkMGxebDj
467467
github.com/sabhiram/go-gitignore v0.0.0-20210923224102-525f6e181f06/go.mod h1:+ePHsJ1keEjQtpvf9HHw0f4ZeJ0TLRsxhunSI2hYJSs=
468468
github.com/scaleway/scaleway-sdk-go v1.0.0-beta.30.0.20241016074915-cfe16eadece2 h1:RJiIfnp9Jh35YJswV5soHKu+pKFHJkrSJlX7zyobfI4=
469469
github.com/scaleway/scaleway-sdk-go v1.0.0-beta.30.0.20241016074915-cfe16eadece2/go.mod h1:3jrRJM7638J+P33hKy9MBvfOBxNo8pEGNQQoIv65Ihg=
470+
github.com/scaleway/scaleway-sdk-go v1.0.0-beta.30.0.20241017133226-2eefb481a740 h1:6znLikGwSaarp3QCambwHFyYde3Qm4bcmyumsWhkZWA=
471+
github.com/scaleway/scaleway-sdk-go v1.0.0-beta.30.0.20241017133226-2eefb481a740/go.mod h1:3jrRJM7638J+P33hKy9MBvfOBxNo8pEGNQQoIv65Ihg=
470472
github.com/sclevine/spec v1.4.0 h1:z/Q9idDcay5m5irkZ28M7PtQM4aOISzOpj4bUPkDee8=
471473
github.com/sclevine/spec v1.4.0/go.mod h1:LvpgJaFyvQzRvc1kaDs0bulYwzC70PbiYjC4QnFHkOM=
472474
github.com/secure-systems-lab/go-securesystemslib v0.8.0 h1:mr5An6X45Kb2nddcFlbmfHkLguCE9laoZCUzEEpIZXA=

internal/namespaces/instance/v1/custom_server_create_builder.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -175,7 +175,7 @@ func (sb *ServerBuilder) AddImage(image string) (*ServerBuilder, error) {
175175

176176
getImageResponse, err := sb.apiInstance.GetImage(&instance.GetImageRequest{
177177
Zone: sb.createReq.Zone,
178-
ImageID: sb.createReq.Image,
178+
ImageID: *(sb.createReq.Image),
179179
})
180180
if err != nil {
181181
logger.Warningf("cannot get image %s: %s", sb.createReq.Image, err)

0 commit comments

Comments
 (0)