Skip to content

Commit f7f4a15

Browse files
authored
Merge pull request #250 from tlsa/tlsa/ci-update
ci: Update github workflows
2 parents c9956cb + 31fac4f commit f7f4a15

File tree

2 files changed

+4
-12
lines changed

2 files changed

+4
-12
lines changed

.github/workflows/ci.yaml

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
matrix:
1010
os:
1111
- ubuntu-22.04
12-
- ubuntu-20.04
12+
- ubuntu-24.04
1313
compiler:
1414
- vendor: gnu
1515
env: { CC: gcc }
@@ -57,9 +57,6 @@ jobs:
5757
uses: actions/checkout@v3
5858
with:
5959
fetch-depth: 1
60-
- name: deps
61-
run: brew update && brew install
62-
libyaml
6360
- name: build
6461
env: ${{ matrix.compiler.env }}
6562
run: LDFLAGS="-L$(brew --prefix)/lib"

.github/workflows/static-analysis.yaml

Lines changed: 3 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -24,15 +24,15 @@ jobs:
2424
libyaml-dev
2525

2626
- name: Initialize CodeQL
27-
uses: github/codeql-action/init@v2
27+
uses: github/codeql-action/init@v4
2828
with:
2929
languages: ${{ matrix.language }}
3030

3131
- run: |
3232
make
3333
3434
- name: Perform CodeQL Analysis
35-
uses: github/codeql-action/analyze@v2
35+
uses: github/codeql-action/analyze@v4
3636

3737
scan-build:
3838
name: scan-build
@@ -58,9 +58,4 @@ jobs:
5858
- name: scan-build
5959
run: |
6060
make clean
61-
scan-build -sarif -o build/sarif make
62-
63-
- name: upload scan-build
64-
uses: github/codeql-action/upload-sarif@v2
65-
with:
66-
sarif_file: build/sarif
61+
scan-build make

0 commit comments

Comments
 (0)