Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(action): bump kind_version from 0.24.0 to 0.25.0 #162

Merged
merged 1 commit into from
Nov 11, 2024
Merged
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
16 changes: 8 additions & 8 deletions .github/workflows/pr-chart-lint-and-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,13 +44,12 @@ jobs:
echo "matrix<<EOF"
echo '{ "include": ['
[[ "${{ steps.changed-files.outputs.any_changed }}" == 'false' ]] && echo '{ "name": "lint" },'
echo '{ "name": "k8s-1.31", "kindest_image": "kindest/node:v1.31.1" },'
echo '{ "name": "k8s-1.30", "kindest_image": "kindest/node:v1.30.4" },'
echo '{ "name": "k8s-1.29", "kindest_image": "kindest/node:v1.29.8" },'
echo '{ "name": "k8s-1.28", "kindest_image": "kindest/node:v1.28.13" },'
echo '{ "name": "k8s-1.31", "kindest_image": "kindest/node:v1.31.2" },'
echo '{ "name": "k8s-1.30", "kindest_image": "kindest/node:v1.30.6" },'
echo '{ "name": "k8s-1.29", "kindest_image": "kindest/node:v1.29.10" },'
echo '{ "name": "k8s-1.28", "kindest_image": "kindest/node:v1.28.15" },'
echo '{ "name": "k8s-1.27", "kindest_image": "kindest/node:v1.27.16" },'
echo '{ "name": "k8s-1.26", "kindest_image": "kindest/node:v1.26.15" },'
echo '{ "name": "k8s-1.25", "kindest_image": "kindest/node:v1.25.16" }'
echo '{ "name": "k8s-1.26", "kindest_image": "kindest/node:v1.26.15" }'
echo '] }'
echo "EOF"
} >> "$GITHUB_OUTPUT"
Expand All @@ -61,8 +60,9 @@ jobs:
needs: prep_job
if: ${{ needs.prep_job.outputs.has_changes == 'true' }}
env:
# see https://github.com/kubernetes-sigs/kind/releases
kind_version: v0.24.0
# See https://github.com/kubernetes-sigs/kind/releases
# Check and update the image versions in the prep_job as well when updating this version.
kind_version: v0.25.0
strategy:
matrix: ${{ fromJson(needs.prep_job.outputs.matrix) }}
name: ${{ matrix.name }}
Expand Down
Loading