Skip to content
Merged
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/update-kubernetes-version.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ on:
- main
- release-*
paths:
- tests/Dockerfile
- tests/Makefile

concurrency:
group: ${{ github.ref_name }}-k8s-version
Expand All @@ -23,7 +23,7 @@ jobs:
- name: Get current k8s version from Kind image
id: k8s-version
run: |
v=$(grep kindest tests/Dockerfile | cut -d ':' -f 2 | cut -d '@' -f 1)
v=$(grep "K8S_CLUSTER_VERSION.*?=" tests/Makefile | head -1 | cut -d '=' -f 2 | xargs)
echo "version=${v}" >> $GITHUB_OUTPUT
cat $GITHUB_OUTPUT

Expand Down
Loading