Skip to content

Commit feb445c

Browse files
Trying to get swift to build at the same time that java builds v2
1 parent c7935e1 commit feb445c

File tree

1 file changed

+3
-10
lines changed

1 file changed

+3
-10
lines changed

.github/workflows/codeql-advanced-security.yml

Lines changed: 3 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,8 @@
1919
jobs:
2020
analyze:
2121
name: CodeQL Analysis
22-
runs-on: ubuntu-latest
22+
runs-on: ${{ (matrix.language == 'swift' && 'macos-15') || 'ubuntu-latest' }}
23+
# runs-on: ubuntu-latest
2324
timeout-minutes: 360
2425
permissions:
2526
actions: read
@@ -33,14 +34,6 @@
3334
# Define the matrix of languages to analyze
3435
language: ['java', 'cpp', 'swift', 'javascript']
3536

36-
analyze:
37-
name: Analyze
38-
runs-on: ${{ (matrix.language == 'swift' && 'macos-15') || 'ubuntu-latest' }}
39-
permissions:
40-
actions: read
41-
contents: read
42-
security-events: write
43-
4437
steps:
4538
- name: Checkout repository
4639
uses: actions/checkout@v4
@@ -65,7 +58,7 @@
6558
# Language-specific setup and build steps
6659
- name: Setup Node.js (JavaScript/TypeScript)
6760
if: matrix.language == 'javascript'
68-
uses: ./.github/actions/setup
61+
6962

7063
- name: Install dependencies (JavaScript/TypeScript)
7164
if: matrix.language == 'javascript'

0 commit comments

Comments
 (0)