We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f7c1a06 commit 6cb5a30Copy full SHA for 6cb5a30
1 file changed
.github/workflows/codeql.yml
@@ -11,7 +11,7 @@ on:
11
jobs:
12
analyze:
13
name: Analyze (${{ matrix.language }})
14
- runs-on: ${{ (matrix.language == 'swift' && 'macos-latest') || 'ubuntu-latest' }}
+ runs-on: ubuntu-latest
15
permissions:
16
security-events: write
17
packages: read
@@ -23,6 +23,7 @@ jobs:
23
strategy:
24
fail-fast: false
25
matrix:
26
+ node-version: [20.x]
27
include:
28
- language: c-cpp
29
build-mode: manual
@@ -31,6 +32,10 @@ jobs:
31
32
- language: python
33
build-mode: none
34
steps:
35
+ - name: Use Node.js ${{ matrix.node-version }}
36
+ uses: actions/setup-node@v4
37
+ with:
38
+ node-version: ${{ matrix.node-version }}
39
- name: Checkout repository
40
uses: actions/checkout@v4
41
0 commit comments