Skip to content

Commit 3026a1e

Browse files
dependabot[bot]FranciscoKurpiel
authored andcommitted
build(deps): bump golangci/golangci-lint-action from 8 to 9
Bumps [golangci/golangci-lint-action](https://github.com/golangci/golangci-lint-action) from 8 to 9. - [Release notes](https://github.com/golangci/golangci-lint-action/releases) - [Commits](golangci/golangci-lint-action@v8...v9) --- updated-dependencies: - dependency-name: golangci/golangci-lint-action dependency-version: '9' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent 90e845c commit 3026a1e

3 files changed

Lines changed: 2 additions & 3 deletions

File tree

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,6 @@ jobs:
4242
go-version: ${{ matrix.go }}
4343
cache: true
4444
- name: golangci-lint
45-
uses: golangci/golangci-lint-action@v8
45+
uses: golangci/golangci-lint-action@v9
4646
with:
4747
version: ${{ matrix.lint }}

client.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -326,5 +326,5 @@ func rawResponseFromErr(err error) []byte {
326326
}
327327

328328
// if the error is not an HTTPError return instead the error's details
329-
return []byte(fmt.Sprintf("%v", err))
329+
return fmt.Appendf(nil, "%v", err)
330330
}

retry/exp_backoff_test.go

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
//go:build integrationtest || !unittest
2-
// +build integrationtest !unittest
32

43
package retry_test
54

0 commit comments

Comments
 (0)