Skip to content

Commit 00cec5d

Browse files
code changes
1 parent 75e9869 commit 00cec5d

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

.github/workflows/codeql.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ on:
99
jobs:
1010
analyze:
1111
name: Analyze
12-
runs-on: ${{ (matrix.language == 'swift' && 'macos-latest') || 'ubuntu-latest' }}
13-
timeout-minutes: ${{ (matrix.language == 'swift' && 120) || 360 }}
12+
runs-on: ${{ matrix.language == 'swift' && 'macos-latest' || 'ubuntu-latest' }}
13+
timeout-minutes: ${{ matrix.language == 'swift' && 120 || 360 }}
1414
permissions:
1515
actions: read
1616
contents: read
@@ -35,6 +35,10 @@ jobs:
3535
uses: actions/setup-dotnet@v3
3636
with:
3737
dotnet-version: ${{ matrix.dot-version }}
38+
39+
- name: Set Globalization Invariant Mode (optional)
40+
run: echo "DOTNET_SYSTEM_GLOBALIZATION_INVARIANT=1" >> $GITHUB_ENV
41+
3842
- name: Display dotnet version
3943
run: dotnet --version
4044

0 commit comments

Comments
 (0)