Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
GHA/build-fw: replace deprecated 'set-env' with Environment Files
looking at github actions logs, there are (security vulnerability) warnings: > The set-env command is deprecated and will be disabled soon. Please upgrade to using Environment Files. > For more information see: https://github.blog/changelog/2020-10-01-github-actions-deprecating-set-env-and-add-path-commands/ 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'"
- Loading branch information