Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Renovate: Update External dependencies (major) #284

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ jobs:
goveralls -service=github -coverprofile=build/cover.out
services:
postgres:
image: postgres:16
image: postgres:17
env:
POSTGRES_PASSWORD: postgres
ports:
Expand Down
4 changes: 2 additions & 2 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ require (
github.com/sapcc/go-api-declarations v1.12.6
github.com/sapcc/go-bits v0.0.0-20240925150026-37945f71a03e
go.uber.org/automaxprocs v1.6.0
gopkg.in/yaml.v2 v2.4.0
gopkg.in/yaml.v3 v3.0.1
)

require (
Expand All @@ -41,5 +41,5 @@ require (
golang.org/x/sys v0.25.0 // indirect
golang.org/x/text v0.18.0 // indirect
google.golang.org/protobuf v1.34.2 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
gopkg.in/yaml.v2 v2.4.0 // indirect
)
2 changes: 1 addition & 1 deletion internal/core/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@

"github.com/sapcc/go-api-declarations/castellum"
"github.com/sapcc/go-bits/regexpext"
"gopkg.in/yaml.v2"
"gopkg.in/yaml.v3"

"github.com/sapcc/castellum/internal/db"
)
Expand All @@ -43,7 +43,7 @@
}

var cfg Config
err = yaml.UnmarshalStrict(buf, &cfg)

Check failure on line 46 in internal/core/config.go

View workflow job for this annotation

GitHub Actions / Checks

undefined: yaml.UnmarshalStrict) (typecheck)

Check failure on line 46 in internal/core/config.go

View workflow job for this annotation

GitHub Actions / Checks

undefined: yaml.UnmarshalStrict) (typecheck)

Check failure on line 46 in internal/core/config.go

View workflow job for this annotation

GitHub Actions / Checks

undefined: yaml.UnmarshalStrict) (typecheck)

Check failure on line 46 in internal/core/config.go

View workflow job for this annotation

GitHub Actions / Checks

undefined: yaml.UnmarshalStrict) (typecheck)

Check failure on line 46 in internal/core/config.go

View workflow job for this annotation

GitHub Actions / CodeQL

undefined: yaml.UnmarshalStrict

Check failure on line 46 in internal/core/config.go

View workflow job for this annotation

GitHub Actions / Build

undefined: yaml.UnmarshalStrict
if err != nil {
return Config{}, fmt.Errorf("could not parse %s: %w", configPath, err)
}
Expand Down
2 changes: 1 addition & 1 deletion internal/tasks/resource_seed_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ import (
"github.com/sapcc/go-bits/assert"
"github.com/sapcc/go-bits/easypg"
"github.com/sapcc/go-bits/mock"
"gopkg.in/yaml.v2"
"gopkg.in/yaml.v3"

"github.com/sapcc/castellum/internal/core"
"github.com/sapcc/castellum/internal/db"
Expand Down
Loading