Skip to content

Commit 121cf44

Browse files
committed
fix linter
1 parent 0fab08a commit 121cf44

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

.github/renovate.json5

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
$schema: "https://docs.renovatebot.com/renovate-schema.json",
3-
extends: ["config:base"],
3+
extends: ['config:recommended'],
44
// The maximum number of PRs to be created in parallel
55
prConcurrentLimit: 5,
66
// The branches renovate should target

.github/workflows/ci.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@ on:
1010

1111
env:
1212
# Common versions
13-
GO_VERSION: '1.21'
14-
GOLANGCI_VERSION: 'v1.54.0'
15-
DOCKER_BUILDX_VERSION: 'v0.8.2'
13+
GO_VERSION: "1.23"
14+
GOLANGCI_VERSION: "v1.64.4"
15+
DOCKER_BUILDX_VERSION: "v0.18.0"
1616

1717
# Common users. We can't run a step 'if secrets.XXX != ""' but we can run a
1818
# step 'if env.XXX != ""', so we copy these to succinctly test whether
@@ -100,7 +100,7 @@ jobs:
100100
# We could run 'make lint' but we prefer this action because it leaves
101101
# 'annotations' (i.e. it comments on PRs to point out linter violations).
102102
- name: Lint
103-
uses: golangci/golangci-lint-action@4afd733a84b1f43292c63897423277bb7f4313a9 # v8.0.0
103+
uses: golangci/golangci-lint-action@v6.2.0
104104
with:
105105
version: ${{ env.GOLANGCI_VERSION }}
106106

0 commit comments

Comments
 (0)