Skip to content

Commit 12e485c

Browse files
committed
[CI/CD]: 升级GitHub Actions工作流和vcpkg基线配置
- actions/checkout: 在build.yml/clean_cache.yml/codeql.yml/cpp_linter.yml/readme.yml中从v4升级到v5版本 - codeql.yml: 新增branches-ignore规则忽略dependabot分支的扫描 - vcpkg.json: 更新builtin-baseline至新版本(897ba2ab4c4c776b985ab1f599548fcf3ae598ba) - 工作流维护: 统一更新依赖版本并优化分支过滤配置
1 parent 0f49a1b commit 12e485c

File tree

6 files changed

+12
-7
lines changed

6 files changed

+12
-7
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: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,5 +27,5 @@
2727
]
2828
}
2929
],
30-
"builtin-baseline": "d8ad13c401b30c2836d00b8923c9127f05f591c7"
30+
"builtin-baseline": "897ba2ab4c4c776b985ab1f599548fcf3ae598ba"
3131
}

0 commit comments

Comments
 (0)