TheLartians / ModernCppStarter

🚀 Kick-start your C++! A template for modern C++ projects using CMake, CI, code coverage, clang-format, reproducible dependency management and much more.
https://thelartians.github.io/ModernCppStarter
The Unlicense
4.33k stars 381 forks source link

The GitHub workflow actions needs an update #160

Closed ClausKlein closed 1 year ago

ClausKlein commented 1 year ago

Problem

Run actions/cache@v2 8 Warning: The save-state command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/ 9 Cache not found for input keys: Windows-cpm-modules-8d17b6a5807bef3fb2c80fa8008f8eb7583d7ae9df0c462d2a34e90edc700324

Solution

upgrade to v3: actions/cache@v3

do: perl -p -i.bak -e's/v2/v3/;' *.yml

TheLartians commented 1 year ago

Fixed in #163.