Skip to content
Merged
Show file tree
Hide file tree
Changes from 2 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
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
# Use the latest versions supported by minikube, otherwise GitHub it will
# end up in a throttling requests from minikube and workflow will fail.
# Minikube does such requests only if a version is not officially supported.
kubernetes: [ '1.30.12', '1.31.8', '1.32.4','1.33.1' ]
kubernetes: [ 'v1.32.13','v1.33.9', 'v1.34.5', 'v1.35.2' ]
Copy link

Copilot AI Mar 9, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The PR title/description says this is only a bump of manusa/actions-setup-minikube, but this workflow also changes the Kubernetes versions exercised in CI (including adding a v prefix and dropping 1.30/1.31). Please update the PR description/title to reflect this behavioral change, or split the Kubernetes matrix update into a separate PR so it’s easier to review/rollback independently.

Copilot uses AI. Check for mistakes.
Comment thread
metacosm marked this conversation as resolved.
Outdated
uses: ./.github/workflows/integration-tests.yml
with:
java-version: ${{ matrix.java }}
Expand All @@ -27,7 +27,7 @@ jobs:
uses: ./.github/workflows/integration-tests.yml
with:
java-version: 25
kube-version: '1.32.0'
kube-version: 'v1.35.2'
http-client: ${{ matrix.httpclient }}
experimental: true

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/e2e-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
uses: actions/checkout@v6

- name: Setup Minikube-Kubernetes
uses: manusa/actions-setup-minikube@v2.15.0
uses: manusa/actions-setup-minikube@v2.16.0
with:
minikube version: v1.36.0
# Use the latest versions supported by minikube, otherwise GitHub it will
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/integration-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:
java-version: ${{ inputs.java-version }}
cache: 'maven'
- name: Set up Minikube
uses: manusa/actions-setup-minikube@v2.15.0
uses: manusa/actions-setup-minikube@v2.16.0
with:
minikube version: 'v1.36.0'
kubernetes version: '${{ inputs.kube-version }}'
Expand Down
Loading