Skip to content

Commit 11a2976

Browse files
committed
chore: update dependencies
1 parent 8d513c7 commit 11a2976

File tree

3 files changed

+13
-13
lines changed

3 files changed

+13
-13
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -63,3 +63,4 @@ sonar-project.properties
6363
unit-tests.xml
6464
coverage.out
6565
.scannerwork/
66+
*-report*

go.mod

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -3,18 +3,18 @@ module gitlab-sync
33
go 1.24.4
44

55
require (
6-
github.com/Masterminds/semver/v3 v3.3.1
7-
github.com/go-git/go-git/v5 v5.16.0
8-
github.com/hashicorp/go-retryablehttp v0.7.7
6+
github.com/Masterminds/semver/v3 v3.4.0
7+
github.com/go-git/go-git/v5 v5.16.2
8+
github.com/hashicorp/go-retryablehttp v0.7.8
99
github.com/spf13/cobra v1.9.1
10-
gitlab.com/gitlab-org/api/client-go v0.128.0
10+
gitlab.com/gitlab-org/api/client-go v0.133.0
1111
go.uber.org/zap v1.27.0
1212
)
1313

1414
require (
15-
dario.cat/mergo v1.0.0 // indirect
15+
dario.cat/mergo v1.0.2 // indirect
1616
github.com/Microsoft/go-winio v0.6.2 // indirect
17-
github.com/ProtonMail/go-crypto v1.1.6 // indirect
17+
github.com/ProtonMail/go-crypto v1.3.0 // indirect
1818
github.com/cloudflare/circl v1.6.1 // indirect
1919
github.com/cyphar/filepath-securejoin v0.4.1 // indirect
2020
github.com/emirpasic/gods v1.18.1 // indirect
@@ -27,15 +27,15 @@ require (
2727
github.com/jbenet/go-context v0.0.0-20150711004518-d14ea06fba99 // indirect
2828
github.com/kevinburke/ssh_config v1.2.0 // indirect
2929
github.com/pjbgf/sha1cd v0.3.2 // indirect
30-
github.com/sergi/go-diff v1.3.2-0.20230802210424-5b0b94c5c0d3 // indirect
30+
github.com/sergi/go-diff v1.4.0 // indirect
3131
github.com/skeema/knownhosts v1.3.1 // indirect
3232
github.com/spf13/pflag v1.0.6 // indirect
3333
github.com/xanzy/ssh-agent v0.3.3 // indirect
3434
go.uber.org/multierr v1.11.0 // indirect
35-
golang.org/x/crypto v0.37.0 // indirect
36-
golang.org/x/net v0.39.0 // indirect
35+
golang.org/x/crypto v0.39.0 // indirect
36+
golang.org/x/net v0.41.0 // indirect
3737
golang.org/x/oauth2 v0.30.0 // indirect
38-
golang.org/x/sys v0.32.0 // indirect
39-
golang.org/x/time v0.11.0 // indirect
38+
golang.org/x/sys v0.33.0 // indirect
39+
golang.org/x/time v0.12.0 // indirect
4040
gopkg.in/warnings.v0 v0.1.2 // indirect
4141
)

internal/mirroring/post.go

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
package mirroring
22

33
import (
4-
"context"
54
"fmt"
65
"sync"
76

@@ -312,6 +311,6 @@ func (g *GitlabInstance) addProjectToCICDCatalog(project *gitlab.Project) error
312311
} `json:"data"`
313312
}
314313

315-
_, err := g.Gitlab.GraphQL.Do(context.Background(), gitlab.GraphQLQuery{Query: query}, &response)
314+
_, err := g.Gitlab.GraphQL.Do(gitlab.GraphQLQuery{Query: query}, &response)
316315
return err
317316
}

0 commit comments

Comments
 (0)