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 module gopkg.in/yaml.v2 to v3 #128

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.
Jump to
Jump to file
Failed to load files.
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 @@ -30,7 +30,7 @@ jobs:
check-latest: true
go-version: "1.22"
- name: Run golangci-lint
uses: golangci/golangci-lint-action@v4
uses: golangci/golangci-lint-action@v5
with:
version: latest
test:
Expand Down
1 change: 0 additions & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@ require (
github.com/rabbitmq/amqp091-go v1.9.0
github.com/sapcc/go-api-declarations v1.11.0
github.com/sergi/go-diff v1.3.1
gopkg.in/yaml.v2 v2.4.0
gopkg.in/yaml.v3 v3.0.1
)

Expand Down
2 changes: 1 addition & 1 deletion gopherpolicy/pkg.go
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ import (
"github.com/gophercloud/gophercloud"
"github.com/gophercloud/gophercloud/openstack"
"github.com/gophercloud/gophercloud/openstack/identity/v3/tokens"
"gopkg.in/yaml.v2"
"gopkg.in/yaml.v3"

"github.com/sapcc/go-bits/logg"
)
Expand Down
2 changes: 1 addition & 1 deletion regexpext/regexpext_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@
"encoding/json"
"testing"

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

Check failure on line 26 in regexpext/regexpext_test.go

View workflow job for this annotation

GitHub Actions / Build & Lint

ST1019: package "gopkg.in/yaml.v3" is being imported more than once (stylecheck)

Check failure on line 26 in regexpext/regexpext_test.go

View workflow job for this annotation

GitHub Actions / Build & Lint

ST1019: package "gopkg.in/yaml.v3" is being imported more than once (stylecheck)
yaml_v3 "gopkg.in/yaml.v3"

Check failure on line 27 in regexpext/regexpext_test.go

View workflow job for this annotation

GitHub Actions / Build & Lint

ST1019(related information): other import of "gopkg.in/yaml.v3" (stylecheck)

Check failure on line 27 in regexpext/regexpext_test.go

View workflow job for this annotation

GitHub Actions / Build & Lint

ST1019(related information): other import of "gopkg.in/yaml.v3" (stylecheck)

"github.com/sapcc/go-bits/assert"
)
Expand Down