We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 72be85e commit 6997628Copy full SHA for 6997628
.github/workflows/update-kubernetes-version.yml
@@ -5,7 +5,7 @@ on:
5
- main
6
- release-*
7
paths:
8
- - tests/Dockerfile
+ - tests/Makefile
9
10
concurrency:
11
group: ${{ github.ref_name }}-k8s-version
@@ -23,7 +23,7 @@ jobs:
23
- name: Get current k8s version from Kind image
24
id: k8s-version
25
run: |
26
- v=$(grep kindest tests/Dockerfile | cut -d ':' -f 2 | cut -d '@' -f 1)
+ v=$(grep "^K8S_CLUSTER_VERSION" tests/Makefile | awk '{ print $3 }')
27
echo "version=${v}" >> $GITHUB_OUTPUT
28
cat $GITHUB_OUTPUT
29
0 commit comments