DEV Community

Discussion on: How to Run CI Tests with GitHub Actions ⚙️

Collapse
 
pierre profile image
👨‍💻Pierre-Henry ✨

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.

More information: