Skip to content

Commit 77c7acc

Browse files
committed
[依赖和工作流更新]: 升级GitHub Actions和vcpkg依赖管理
- GitHub Actions: 将actions/checkout从v4升级到v5版本 - GitHub Actions: 将actions/setup-node从v4升级到v5版本 - GitHub Actions: 在codeql和cpp_linter工作流中忽略dependabot分支 - vcpkg: 调整依赖项顺序并更新baseline至b1b1930 - vcpkg: 移除openssl的单独配置项,合并到curl特性配置中
1 parent 0f49a1b commit 77c7acc

File tree

6 files changed

+23
-14
lines changed

6 files changed

+23
-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: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,18 +7,22 @@ on:
77
- '.gitignore'
88
- 'LICENSE'
99
- 'README*'
10+
branches-ignore:
11+
- 'dependabot/**'
1012
pull_request:
1113
paths-ignore:
1214
- '.clang*'
1315
- '.gitignore'
1416
- 'LICENSE'
1517
- 'README*'
18+
branches-ignore:
19+
- 'dependabot/**'
1620

1721
jobs:
1822
cpp-linter:
1923
runs-on: ubuntu-latest
2024
steps:
21-
- uses: actions/checkout@v4
25+
- uses: actions/checkout@v5
2226
with:
2327
fetch-depth: 1
2428

.github/workflows/readme.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,9 @@ 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
17-
uses: actions/setup-node@v4
17+
uses: actions/setup-node@v5
1818
# ISO Langusge Codes: https://cloud.google.com/translate/docs/languages
1919
- name: Adding README - English
2020
uses: dephraiim/translate-readme@main

vcpkg.json

Lines changed: 7 additions & 7 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"
30+
"builtin-baseline": "b1b19307e2d2ec1eefbdb7ea069de7d4bcd31f01"
3131
}

0 commit comments

Comments
 (0)