Skip to content
Open
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
8 changes: 4 additions & 4 deletions .github/workflows/e2e.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,10 @@ on:

env:
# Common versions
GO_VERSION: '1.23.8'
GOLANGCI_VERSION: 'v1.60.1'
K3D_IMAGE_VERSION: '[\"v1.31\"]'
K3D_IMAGE_VERSIONS: '[\"v1.31\"]'
GO_VERSION: '1.25.12'
GOLANGCI_VERSION: 'v2.12.2'
K3D_IMAGE_VERSION: '[\"v1.35\"]'
K3D_IMAGE_VERSIONS: '[\"v1.35\"]'

jobs:

Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/go.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ on:

env:
# Common versions
GO_VERSION: '1.23.8'
GOLANGCI_VERSION: 'v1.60.1'
GO_VERSION: '1.25.12'
GOLANGCI_VERSION: 'v2.12.2'

jobs:

Expand Down Expand Up @@ -56,7 +56,7 @@ jobs:
restore-keys: ${{ runner.os }}-pkg-

- name: Install StaticCheck
run: go install honnef.co/go/tools/cmd/staticcheck@v0.5.1
run: go install honnef.co/go/tools/cmd/staticcheck@v0.7.0

- name: Static Check
run: staticcheck ./...
Expand Down Expand Up @@ -89,6 +89,6 @@ jobs:
# version, but we prefer this action because it leaves 'annotations' (i.e.
# it comments on PRs to point out linter violations).
- name: Lint
uses: golangci/golangci-lint-action@v3
uses: golangci/golangci-lint-action@v8
with:
version: ${{ env.GOLANGCI_VERSION }}
2 changes: 1 addition & 1 deletion .github/workflows/post-submit.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ on:
workflow_dispatch: {}

env:
GO_VERSION: '1.23.8'
GO_VERSION: '1.25.12'

jobs:

Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/unit-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ on:

env:
# Common versions
GO_VERSION: '1.23.8'
GOLANGCI_VERSION: 'v1.60.1'
GO_VERSION: '1.25.12'
GOLANGCI_VERSION: 'v2.12.2'

jobs:

Expand Down Expand Up @@ -65,7 +65,7 @@ jobs:
with:
version: 3.15.1
kubebuilderOnly: false
kubernetesVersion: v1.31.10
kubernetesVersion: v1.35.0

- name: Run Make test
run: make test
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/webhook-upgrade-validation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ permissions:
contents: read

env:
GO_VERSION: '1.23.8'
GO_VERSION: '1.25.12'

jobs:
webhook-upgrade-check:
Expand All @@ -35,7 +35,7 @@ jobs:
- name: Setup K3d
uses: nolar/setup-k3d-k3s@v1.0.8
with:
version: v1.31
version: v1.35
github-token: ${{ secrets.GITHUB_TOKEN }}

- name: Build and load image
Expand Down
Loading
Loading