Compare commits
1 Commits
main
...
dependabot
Author | SHA1 | Date | |
---|---|---|---|
|
743e3264ef |
2
.github/workflows/Code-review.yml
vendored
2
.github/workflows/Code-review.yml
vendored
|
@ -8,7 +8,7 @@ jobs:
|
||||||
name: Code Review
|
name: Code Review
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v2 # 将代码库检出到 Runner 中
|
- uses: actions/checkout@v4 # 将代码库检出到 Runner 中
|
||||||
- name: Setup Node.js
|
- name: Setup Node.js
|
||||||
uses: actions/setup-node@v2 # 安装 Node.js 运行环境和依赖项
|
uses: actions/setup-node@v2 # 安装 Node.js 运行环境和依赖项
|
||||||
with:
|
with:
|
||||||
|
|
2
.github/workflows/auto-merge.yml
vendored
2
.github/workflows/auto-merge.yml
vendored
|
@ -25,7 +25,7 @@ jobs:
|
||||||
# 步骤,包括代码 checkout、Node.js 环境设置、依赖安装、代码 lint、单元测试等操作
|
# 步骤,包括代码 checkout、Node.js 环境设置、依赖安装、代码 lint、单元测试等操作
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout code # 步骤名称为:Checkout code
|
- name: Checkout code # 步骤名称为:Checkout code
|
||||||
uses: actions/checkout@v3 # 使用 actions/checkout 动作
|
uses: actions/checkout@v4 # 使用 actions/checkout 动作
|
||||||
|
|
||||||
- name: Setup Node.js environment # 步骤名称为:Setup Node.js environment
|
- name: Setup Node.js environment # 步骤名称为:Setup Node.js environment
|
||||||
uses: actions/setup-node@v3 # 使用 actions/setup-node 动作安装 Node.js 环境
|
uses: actions/setup-node@v3 # 使用 actions/setup-node 动作安装 Node.js 环境
|
||||||
|
|
2
.github/workflows/build-and-deploy.yml
vendored
2
.github/workflows/build-and-deploy.yml
vendored
|
@ -10,7 +10,7 @@ jobs:
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout
|
- name: Checkout
|
||||||
uses: actions/checkout@v3
|
uses: actions/checkout@v4
|
||||||
with:
|
with:
|
||||||
persist-credentials: false
|
persist-credentials: false
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user