according to kubernetes/minikube#9541 running the following command to fix it:
find . -type f -name "*.yml" -print0 | xargs -0 sed -i -r 's/echo "::set-env name=(.*)::(.*)"/echo "\1=\2" >> $GITHUB_ENV/g'"
The warnings have become errors recently, so the build fails and the fix need to be implemented. Tested this in my personal repo before and it seems fine.
looking at github actions logs, there are (security vulnerability) warnings:
according to kubernetes/minikube#9541 running the following command to fix it:
find . -type f -name "*.yml" -print0 | xargs -0 sed -i -r 's/echo "::set-env name=(.*)::(.*)"/echo "\1=\2" >> $GITHUB_ENV/g'"
The warnings have become errors recently, so the build fails and the fix need to be implemented. Tested this in my personal repo before and it seems fine.