Skip to content

Commit

Permalink
update regression matrix to include old k8s (#6974)
Browse files Browse the repository at this point in the history
  • Loading branch information
vepatel authored Dec 12, 2024
1 parent 396208a commit f92a20a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/regression.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,13 +52,13 @@ jobs:
| sed 's/^.\{1\}//' \
| tr -d '\n')
echo "k8s_latest=$kindest_latest" >> $GITHUB_OUTPUT
kindest_versions=$(curl -s "https://hub.docker.com/v2/repositories/kindest/node/tags" \
kindest_versions=$(curl -s "https://hub.docker.com/v2/repositories/kindest/node/tags/?page_size=50" \
| grep -o '"name": *"[^"]*' \
| grep -o '[^"]*$' \
| grep -E '^v[0-9]+\.[0-9]+\.[0-9]+$' \
| sort -rV \
| awk -F. '!seen[$1"."$2]++' \
| head -n 7 \
| head -n 8 \
| sort -V \
| sed 's/v//g' \
| sed 's/$//' \
Expand Down

0 comments on commit f92a20a

Please sign in to comment.