observatoire-mobilite / odmkraken

The **kraken** is the orchestration layer responsible for gathering and postprocessing ODM's mobility data
MIT License
0 stars 0 forks source link

Upgrade all GitHub actions to use GITHUB_OUTPUT #45

Closed gilgeorges closed 1 year ago

gilgeorges commented 1 year ago

Github is about to deprecate the set-output mechanism. Meaning the folllowing will no longe rwork

echo "::set-output name={name}::{value}"

Any occurence has to be replaced with:

echo "{name}={value}" >> $GITHUB_OUTPUT

See github.blog for details