ci(workflow): 添加Node.js环境并降级checkout action版本
添加Node.js环境设置步骤以满足构建需求 将actions/checkout从v4降级至v3以解决兼容性问题
This commit is contained in:
parent
bf13c56261
commit
fdbe3c75ee
@ -29,8 +29,13 @@ jobs:
|
||||
go: ["1.24.3"]
|
||||
|
||||
steps:
|
||||
- name: Setup Node.js
|
||||
uses: actions/setup-node@v3
|
||||
with:
|
||||
node-version: '18'
|
||||
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v4
|
||||
uses: actions/checkout@v3
|
||||
|
||||
# 将.env环境变量配置文件拷贝致gitea runner容器
|
||||
- name: copy env file to runner container
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user