File tree 2 files changed +35
-0
lines changed
2 files changed +35
-0
lines changed Original file line number Diff line number Diff line change
1
+ on :
2
+ workflow_dispatch :
3
+ schedule :
4
+ # ┌───────────── minute (0 - 59)
5
+ # │ ┌───────────── hour (0 - 23)
6
+ # │ │ ┌───────────── day of the month (1 - 31)
7
+ # │ │ │ ┌───────────── month (1 - 12 or JAN-DEC)
8
+ # │ │ │ │ ┌───────────── day of the week (0 - 6 or SUN-SAT)
9
+ # │ │ │ │ │
10
+ # │ │ │ │ │
11
+ # │ │ │ │ │
12
+ # * * * * *
13
+ - cron : ' 30 1 * * *'
14
+
15
+ jobs :
16
+ CodeQL-Build :
17
+ runs-on : ubuntu-latest
18
+
19
+ steps :
20
+ - name : Checkout repository
21
+ uses : actions/checkout@v2
22
+
23
+ # Initializes the CodeQL tools for scanning.
24
+ - name : Initialize CodeQL
25
+ uses : github/codeql-action/init@v1
26
+ with :
27
+ languages : go
28
+
29
+ - name : Autobuild
30
+ uses : github/codeql-action/autobuild@v1
31
+
32
+ - name : Perform CodeQL Analysis
33
+ uses : github/codeql-action/analyze@v1
Original file line number Diff line number Diff line change @@ -15,6 +15,8 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm
15
15
- Add registry link check to ` Makefile ` and pre-release script. (#446 )
16
16
- A new AWS X-Ray ID Generator (#459 )
17
17
- Migrate CircleCI jobs to GitHub Actions (#476 )
18
+ - Add CodeQL GitHub Action (#506 )
19
+
18
20
### Fixed
19
21
20
22
- Fixes the body replacement in otelhttp to not to mutate a nil body. (#484 )
You can’t perform that action at this time.
0 commit comments