Skip to content

Commit a05f32f

Browse files
Bump CodeQL actions (#1391)
* Bump actions/upload-artifact from 1 to 4 Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 1 to 4. - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](actions/upload-artifact@v1...v4) --- updated-dependencies: - dependency-name: actions/upload-artifact dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]> * update codeQL action --------- Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: meiji163 <[email protected]>
1 parent 17149b9 commit a05f32f

File tree

2 files changed

+11
-5
lines changed

2 files changed

+11
-5
lines changed

.github/workflows/ci.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
run: script/cibuild
2020

2121
- name: Upload gh-ost binary artifact
22-
uses: actions/upload-artifact@v1
22+
uses: actions/upload-artifact@v4
2323
with:
2424
name: gh-ost
2525
path: bin/gh-ost

.github/workflows/codeql.yml

+10-4
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,18 @@ name: "CodeQL analysis"
22

33
on:
44
push:
5+
branches: [ master ]
56
pull_request:
7+
branches: [ master ]
68
schedule:
7-
- cron: '0 0 * * 0'
9+
- cron: '25 22 * * 6'
810

911
jobs:
1012
codeql:
13+
permissions:
14+
actions: read
15+
contents: read
16+
security-events: write
1117

1218
strategy:
1319
fail-fast: false
@@ -16,10 +22,10 @@ jobs:
1622

1723
steps:
1824
- name: Checkout repository
19-
uses: actions/checkout@v2
25+
uses: actions/checkout@v4
2026

2127
- name: Initialize CodeQL
22-
uses: github/codeql-action/init@v2
28+
uses: github/codeql-action/init@v3
2329

2430
- name: Perform CodeQL Analysis
25-
uses: github/codeql-action/analyze@v2
31+
uses: github/codeql-action/analyze@v3

0 commit comments

Comments
 (0)