File tree Expand file tree Collapse file tree 1 file changed +6
-5
lines changed Expand file tree Collapse file tree 1 file changed +6
-5
lines changed Original file line number Diff line number Diff line change @@ -17,20 +17,21 @@ jobs:
17
17
codeql :
18
18
name : CodeQL Analysis
19
19
runs-on : macos-latest
20
- timeout-minutes : 360
21
20
strategy :
22
- fail-fast : false
23
21
matrix :
24
- language : [ swift ]
22
+ xcode : ["16.4" ]
25
23
26
24
steps :
27
25
- name : Checkout repository
28
26
uses : actions/checkout@v5
29
27
28
+ - name : Select Xcode ${{ matrix.xcode }}
29
+ run : sudo xcode-select -s /Applications/Xcode_${{ matrix.xcode }}.app
30
+
30
31
- name : Initialize CodeQL
31
32
uses : github/codeql-action/init@v3
32
33
with :
33
- languages : ${{ matrix.language }}
34
+ languages : swift
34
35
queries : +security-and-quality
35
36
36
37
- name : Build Supabase library
39
40
- name : Perform CodeQL Analysis
40
41
uses : github/codeql-action/analyze@v3
41
42
with :
42
- category : " /language:${{matrix.language}} "
43
+ category : " /language:swift "
43
44
44
45
dependency-review :
45
46
name : Dependency Review
You can’t perform that action at this time.
0 commit comments