Skip to content

Commit eaea795

Browse files
committed
[CI/CD]: 更新工作流配置和依赖管理
- actions/checkout: 从v4统一升级至v5版本,提升工作流执行效率 - codeql-analysis: 新增对dependabot分支的忽略配置,避免重复扫描 - vcpkg-dependencies: 调整依赖项顺序并更新基线版本至897ba2a,保持依赖管理一致性
1 parent 0f49a1b commit eaea795

File tree

6 files changed

+19
-14
lines changed

6 files changed

+19
-14
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434
- "Ninja"
3535

3636
steps:
37-
- uses: actions/checkout@v4
37+
- uses: actions/checkout@v5
3838
with:
3939
fetch-depth: 1
4040

.github/workflows/clean_cache.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
contents: read
1313
steps:
1414
- name: Check out code
15-
uses: actions/checkout@v4
15+
uses: actions/checkout@v5
1616

1717
- name: Cleanup
1818
run: |

.github/workflows/codeql.yml

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,13 +7,18 @@ on:
77
- '.gitignore'
88
- 'LICENSE'
99
- 'README*'
10+
branches-ignore:
11+
- 'dependabot/**'
12+
1013
pull_request:
1114
paths-ignore:
1215
- '.clang*'
1316
- '.gitignore'
1417
- 'LICENSE'
1518
- 'README*'
16-
19+
branches-ignore:
20+
- 'dependabot/**'
21+
1722
schedule:
1823
- cron: '0 0 1 * *'
1924
workflow_dispatch:
@@ -24,7 +29,7 @@ jobs:
2429
runs-on: ubuntu-latest
2530

2631
steps:
27-
- uses: actions/checkout@v4
32+
- uses: actions/checkout@v5
2833
with:
2934
fetch-depth: 1
3035

.github/workflows/cpp_linter.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
cpp-linter:
1919
runs-on: ubuntu-latest
2020
steps:
21-
- uses: actions/checkout@v4
21+
- uses: actions/checkout@v5
2222
with:
2323
fetch-depth: 1
2424

.github/workflows/readme.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
build:
1313
runs-on: ubuntu-latest
1414
steps:
15-
- uses: actions/checkout@v4
15+
- uses: actions/checkout@v5
1616
- name: Setup Node.js
1717
uses: actions/setup-node@v4
1818
# ISO Langusge Codes: https://cloud.google.com/translate/docs/languages

vcpkg.json

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -10,12 +10,6 @@
1010
"efsw",
1111
"glog",
1212
"gtest",
13-
{
14-
"name": "openssl",
15-
"features": [
16-
"tools"
17-
]
18-
},
1913
{
2014
"name": "curl",
2115
"features": [
@@ -25,7 +19,13 @@
2519
"http2",
2620
"tool"
2721
]
22+
},
23+
{
24+
"name": "openssl",
25+
"features": [
26+
"tools"
27+
]
2828
}
2929
],
30-
"builtin-baseline": "d8ad13c401b30c2836d00b8923c9127f05f591c7"
31-
}
30+
"builtin-baseline": "897ba2ab4c4c776b985ab1f599548fcf3ae598ba"
31+
}

0 commit comments

Comments
 (0)