Skip to content

Commit

Permalink
deps: update dependency golangci/golangci-lint (#841)
Browse files Browse the repository at this point in the history
  • Loading branch information
renovate[bot] authored Aug 16, 2024
1 parent 140c11e commit 4736c19
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
uses: golangci/golangci-lint-action@v6
with:
# Required: the version of golangci-lint is required and must be specified with patch version
version: v1.59.1 # renovate: datasource=github-releases depName=golangci/golangci-lint
version: v1.60.1 # renovate: datasource=github-releases depName=golangci/golangci-lint
# In general linting is quite fast with warm caches, but a fresh run might take some time.
args: --timeout 5m

Expand Down
2 changes: 1 addition & 1 deletion .gitlab-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ build:

test:lint:
stage: test
image: golangci/golangci-lint:v1.59
image: golangci/golangci-lint:v1.60
script:
- golangci-lint run -v

Expand Down
2 changes: 1 addition & 1 deletion internal/cmd/iso/describe.go
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ var DescribeCmd = base.DescribeCmd{
cmd.Printf("Name:\t\t%s\n", iso.Name)
cmd.Printf("Description:\t%s\n", iso.Description)
cmd.Printf("Type:\t\t%s\n", iso.Type)
cmd.Printf(util.DescribeDeprecation(iso))
cmd.Print(util.DescribeDeprecation(iso))

architecture := "-"
if iso.Architecture != nil {
Expand Down
2 changes: 1 addition & 1 deletion internal/cmd/server/describe.go
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ var DescribeCmd = base.DescribeCmd{
cmd.Printf(" Memory:\t%v GB\n", server.ServerType.Memory)
cmd.Printf(" Disk:\t\t%d GB\n", server.PrimaryDiskSize)
cmd.Printf(" Storage Type:\t%s\n", server.ServerType.StorageType)
cmd.Printf(util.PrefixLines(util.DescribeDeprecation(server.ServerType), " "))
cmd.Print(util.PrefixLines(util.DescribeDeprecation(server.ServerType), " "))

cmd.Printf("Public Net:\n")
cmd.Printf(" IPv4:\n")
Expand Down
2 changes: 1 addition & 1 deletion internal/cmd/servertype/describe.go
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ var DescribeCmd = base.DescribeCmd{
cmd.Printf("Memory:\t\t\t%.1f GB\n", serverType.Memory)
cmd.Printf("Disk:\t\t\t%d GB\n", serverType.Disk)
cmd.Printf("Storage Type:\t\t%s\n", serverType.StorageType)
cmd.Printf(util.DescribeDeprecation(serverType))
cmd.Print(util.DescribeDeprecation(serverType))

pricings, err := fullPricingInfo(s, serverType)
if err != nil {
Expand Down

0 comments on commit 4736c19

Please sign in to comment.