Skip to content
Merged
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 @@ -299,7 +299,7 @@ jobs:
name: lint
runs-on: ubuntu-latest
env:
GOLANGCI_LINT_VERSION: v2.10.1
GOLANGCI_LINT_VERSION: v2.11.4
permissions:
contents: read
# allow read access to pull request. Use with `only-new-issues` option.
Expand Down
2 changes: 1 addition & 1 deletion riverdriver/riverpgxv5/river_pgx_v5_driver.go
Original file line number Diff line number Diff line change
Expand Up @@ -624,7 +624,7 @@ func (e *Executor) JobSetStateIfRunningMany(ctx context.Context, params *riverdr
for i := range len(params.ID) {
if params.Attempt[i] != nil {
setStateParams.AttemptDoUpdate[i] = true
setStateParams.Attempt[i] = int32(*params.Attempt[i])
setStateParams.Attempt[i] = int32(*params.Attempt[i]) //nolint:gosec
}
if params.ErrData[i] != nil {
setStateParams.ErrorsDoUpdate[i] = true
Expand Down
Loading