👋Pierre-Henry. A Passionate AI Software Engineer😎 I create cool stuff (https://github.com/Lifyzer & https://github.com/pH7Software), love problem-solving, eating veggies, and developing new skills😊
FYI, I've just updated the cache code example of the article, changing run: echo "::set-output name=dir::$(composer config cache-files-dir)" to run: echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT.
The reason is that ::set-output has been deprecated in favour to the output >> $GITHUB_OUTPUT stream.
FYI, I've just updated the cache code example of the article, changing
run: echo "::set-output name=dir::$(composer config cache-files-dir)"torun: echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT.The reason is that
::set-outputhas been deprecated in favour to the output>> $GITHUB_OUTPUTstream.More information: