You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Using the Prettier plugin in VSCode, the code has been formatted.
Removed extra spaces and changed single quotes to double quotes.
style(yml): 格式化代码。
通过vscode上的Prettier插件,对代码进行格式化。
删除多余空格,单引号改成双引号。
# Public documentation: https://docs.github.com/en/code-security/supply-chain-security/understanding-your-software-supply-chain/about-dependency-review#dependency-review-enforcement
10
-
name: 'Dependency review'
10
+
name: "Dependency review"
11
11
on:
12
12
pull_request:
13
-
branches: ["main", "dev"]
13
+
branches: ["main", "dev"]
14
14
15
15
# If using a dependency submission action in this workflow this permission will need to be set to:
16
16
#
@@ -27,9 +27,9 @@ jobs:
27
27
dependency-review:
28
28
runs-on: ubuntu-latest
29
29
steps:
30
-
- name: 'Checkout repository'
30
+
- name: "Checkout repository"
31
31
uses: actions/checkout@v4
32
-
- name: 'Dependency Review'
32
+
- name: "Dependency Review"
33
33
uses: actions/dependency-review-action@v4
34
34
# Commonly enabled options, see https://github.com/actions/dependency-review-action#configuration-options for all available options.
0 commit comments