We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 75e9869 commit 00cec5dCopy full SHA for 00cec5d
.github/workflows/codeql.yml
@@ -9,8 +9,8 @@ on:
9
jobs:
10
analyze:
11
name: Analyze
12
- runs-on: ${{ (matrix.language == 'swift' && 'macos-latest') || 'ubuntu-latest' }}
13
- timeout-minutes: ${{ (matrix.language == 'swift' && 120) || 360 }}
+ runs-on: ${{ matrix.language == 'swift' && 'macos-latest' || 'ubuntu-latest' }}
+ timeout-minutes: ${{ matrix.language == 'swift' && 120 || 360 }}
14
permissions:
15
actions: read
16
contents: read
@@ -35,6 +35,10 @@ jobs:
35
uses: actions/setup-dotnet@v3
36
with:
37
dotnet-version: ${{ matrix.dot-version }}
38
+
39
+ - name: Set Globalization Invariant Mode (optional)
40
+ run: echo "DOTNET_SYSTEM_GLOBALIZATION_INVARIANT=1" >> $GITHUB_ENV
41
42
- name: Display dotnet version
43
run: dotnet --version
44
0 commit comments