Operating System: Linux - Github env - I assume some kind of debian distro given the environment
Description
What I did: Push change to github remote
What happened: Error message from Github CI about set-env and add-path being deprecated and the CI build fails. Note that the GC AWS Code Build succeeds even if the Github CI build fails when pushing tag only.
Cause: evalutils creates a .github/workflows/ci.yml file which uses an older, deprecated version of actions/setup-python@v1.1.1
Soln: update to actions/setup-python@v2.2.2
Description
What I did: Push change to github remote What happened: Error message from Github CI about
set-env
andadd-path
being deprecated and the CI build fails. Note that the GC AWS Code Build succeeds even if the Github CI build fails when pushing tag only.What I Did
git push
Simple as that :)