LearningOS / rust-based-os-comp2023

2023秋冬季开源操作系统训练营
https://github.com/LearningOS/rust-based-os-comp2023
GNU General Public License v3.0
2.13k stars 351 forks source link

[Question] lab4 make test6通过了,CI没通过 #156

Closed shiwenlong12 closed 1 year ago

shiwenlong12 commented 1 year ago

Describe the question Warning: The set-output 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/

在网上找到了一个类似的问题及解决方法,但是不会操作 原因 如果您有一个使用 设置输出的GitHub Actionsecho ::set-output key=value工作流程,您已经开始看到无用的弃用警告。这是修复它的方法。查看官方链接基本上得不到什么帮助! 修复方法 1.更新其它人的action方法 将 @actions/core 提升到 1.10.0 2.修改自己的aciton方法 run: echo "::set-output name=KEY::VALUE" 改为 run: echo "KEY=VALUE" >>$GITHUB_OUTPUT