Skip to content

Commit

Permalink
Renovate: Update External dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
renovate[bot] authored Sep 27, 2024
1 parent 7153750 commit 29c7a86
Show file tree
Hide file tree
Showing 7 changed files with 8 additions and 8 deletions.
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 @@ -17,7 +17,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.5.3
gopkg.in/yaml.v2 v2.4.0
gopkg.in/yaml.v3 v3.0.1
)

require (
Expand All @@ -43,5 +43,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/cluster.go
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ import (
limesresources "github.com/sapcc/go-api-declarations/limes/resources"
"github.com/sapcc/go-api-declarations/liquid"
"github.com/sapcc/go-bits/errext"
yaml "gopkg.in/yaml.v2"
yaml "gopkg.in/yaml.v3"

"github.com/sapcc/limes/internal/db"
"github.com/sapcc/limes/internal/util"
Expand Down
2 changes: 1 addition & 1 deletion internal/core/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ import (
limesresources "github.com/sapcc/go-api-declarations/limes/resources"
"github.com/sapcc/go-bits/errext"
"github.com/sapcc/go-bits/regexpext"
yaml "gopkg.in/yaml.v2"
yaml "gopkg.in/yaml.v3"

"github.com/sapcc/limes/internal/db"
"github.com/sapcc/limes/internal/util"
Expand Down
2 changes: 1 addition & 1 deletion internal/test/setup.go
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ import (
"github.com/sapcc/go-bits/mock"
"github.com/sapcc/go-bits/osext"
"github.com/sapcc/go-bits/sqlext"
"gopkg.in/yaml.v2"
"gopkg.in/yaml.v3"

"github.com/sapcc/limes/internal/core"
"github.com/sapcc/limes/internal/db"
Expand Down
2 changes: 1 addition & 1 deletion internal/util/datatypes.go
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ import (
"encoding/json"
"time"

"gopkg.in/yaml.v2"
"gopkg.in/yaml.v3"
)

// Float64OrUnknown extracts a value of type float64 or unknown from a json
Expand Down
2 changes: 1 addition & 1 deletion main.go
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ import (
"github.com/sapcc/go-bits/must"
"github.com/sapcc/go-bits/osext"
"go.uber.org/automaxprocs/maxprocs"
"gopkg.in/yaml.v2"
"gopkg.in/yaml.v3"

"github.com/sapcc/limes/internal/api"
"github.com/sapcc/limes/internal/collector"
Expand Down

0 comments on commit 29c7a86

Please sign in to comment.