Skip to content

Commit

Permalink
Bump GitHub action CodeQL and upload versions
Browse files Browse the repository at this point in the history
  • Loading branch information
arkq committed Dec 27, 2023
1 parent 16fc311 commit bcc21e2
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build-and-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ jobs:
working-directory: ${{ github.workspace }}/build/test
run: make check-TESTS
- name: Upload Tests Log
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
if: ${{ always() }}
with:
name: ${{ github.job }} (${{ matrix.features }}) logs
Expand Down Expand Up @@ -170,7 +170,7 @@ jobs:
esac
make check-TESTS
- name: Upload Tests Log
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
if: ${{ always() }}
with:
name: ${{ github.job }} (${{ matrix.sanitize }}) logs
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/code-scanning.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
- uses: actions/checkout@v4
- name: Run cccc analysis
uses: sarnold/cccc-action@main
- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: ${{ github.job }} logs
path: metrics
Expand All @@ -47,7 +47,7 @@ jobs:
libspandsp-dev
- uses: actions/checkout@v4
- name: Initialize CodeQL
uses: github/codeql-action/init@v2
uses: github/codeql-action/init@v3
with:
languages: cpp
queries: security-and-quality
Expand Down Expand Up @@ -75,7 +75,7 @@ jobs:
working-directory: ${{ github.workspace }}/build
run: make
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v2
uses: github/codeql-action/analyze@v3

doc8-lint:
runs-on: ubuntu-latest
Expand Down
4 changes: 3 additions & 1 deletion src/sco.c
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,9 @@
#include "ba-transport-pcm.h"
#include "bluealsa-config.h"
#include "bluealsa-dbus.h"
#include "codec-msbc.h"
#if ENABLE_MSBC
# include "codec-msbc.h"
#endif
#include "hci.h"
#include "hfp.h"
#include "io.h"
Expand Down

0 comments on commit bcc21e2

Please sign in to comment.