diff --git a/.github/workflows/golangci-lint.yml b/.github/workflows/golangci-lint.yml index 617302d..cad7430 100644 --- a/.github/workflows/golangci-lint.yml +++ b/.github/workflows/golangci-lint.yml @@ -24,6 +24,6 @@ jobs: uses: golangci/golangci-lint-action@v2 with: # Required: the version of golangci-lint is required and must be specified without patch version: we always use the latest patch version. - version: v1.31 + version: v1.35 # Optional: show only new issues if it's a pull request. The default value is `false`. only-new-issues: true diff --git a/subscriptions/subscriptions.go b/subscriptions/subscriptions.go index 91535d3..ecee735 100644 --- a/subscriptions/subscriptions.go +++ b/subscriptions/subscriptions.go @@ -374,9 +374,9 @@ func updateAll() { defer wg.Done() for j := range jobs { if j[0] == "feed" { - updateFeed(j[1]) //nolint:errcheck + updateFeed(j[1]) } else if j[0] == "page" { - updatePage(j[1]) //nolint:errcheck + updatePage(j[1]) } } }