File tree 1 file changed +8
-4
lines changed
1 file changed +8
-4
lines changed Original file line number Diff line number Diff line change 63
63
if (key.toLowerCase() === 'swift') {
64
64
osList = ['macos-latest'];
65
65
} else if (key.toLowerCase() === 'cpp') {
66
- osList = ['macos-latest', 'ubuntu-latest', 'windows-latest'];
66
+ // TODO: update macos to latest after the below issue is resolved
67
+ // https://github.com/github/codeql-action/issues/2266
68
+ osList = ['macos-13', 'ubuntu-latest', 'windows-latest'];
67
69
}
68
70
for (let os of osList) {
69
71
// set name for matrix
@@ -120,10 +122,12 @@ jobs:
120
122
121
123
steps :
122
124
- name : Maximize build space
123
- if : runner.os == 'Linux'
124
- uses : easimon/maximize-build-space@v8
125
+ if : >-
126
+ runner.os == 'Linux' &&
127
+ matrix.language == 'cpp'
128
+ uses : easimon/maximize-build-space@v10
125
129
with :
126
- root-reserve-mb : 20480
130
+ root-reserve-mb : 30720
127
131
remove-dotnet : ${{ (matrix.language == 'csharp' && 'false') || 'true' }}
128
132
remove-android : ' true'
129
133
remove-haskell : ' true'
You can’t perform that action at this time.
0 commit comments