Skip to content

Commit 2698ed6

Browse files
authored
Fix invalid culture identifier (#4)
* Remove DOTNET_SYSTEM_GLOBALIZATION_INVARIANT=1 According to actions/runner#1605 (comment), dotnet6 introduce globalization-invariant mode breaking change. * Update dist
1 parent b03dd32 commit 2698ed6

File tree

2 files changed

+0
-4
lines changed

2 files changed

+0
-4
lines changed

dist/index.js

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55553,7 +55553,6 @@ function buildUserDataScript(githubRegistrationToken, label) {
5555355553
'#!/bin/bash',
5555455554
`cd "${config.input.runnerHomeDir}"`,
5555555555
'export RUNNER_ALLOW_RUNASROOT=1',
55556-
'export DOTNET_SYSTEM_GLOBALIZATION_INVARIANT=1',
5555755556
`./config.sh --url https://github.com/${config.githubContext.owner}/${config.githubContext.repo} --token ${githubRegistrationToken} --labels ${label}`,
5555855557
'./run.sh',
5555955558
];
@@ -55565,7 +55564,6 @@ function buildUserDataScript(githubRegistrationToken, label) {
5556555564
'curl -O -L https://github.com/actions/runner/releases/download/v2.286.0/actions-runner-linux-${RUNNER_ARCH}-2.286.0.tar.gz',
5556655565
'tar xzf ./actions-runner-linux-${RUNNER_ARCH}-2.286.0.tar.gz',
5556755566
'export RUNNER_ALLOW_RUNASROOT=1',
55568-
'export DOTNET_SYSTEM_GLOBALIZATION_INVARIANT=1',
5556955567
`./config.sh --url https://github.com/${config.githubContext.owner}/${config.githubContext.repo} --token ${githubRegistrationToken} --labels ${label}`,
5557055568
'./run.sh',
5557155569
];

src/aws.js

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@ function buildUserDataScript(githubRegistrationToken, label) {
1111
'#!/bin/bash',
1212
`cd "${config.input.runnerHomeDir}"`,
1313
'export RUNNER_ALLOW_RUNASROOT=1',
14-
'export DOTNET_SYSTEM_GLOBALIZATION_INVARIANT=1',
1514
`./config.sh --url https://github.com/${config.githubContext.owner}/${config.githubContext.repo} --token ${githubRegistrationToken} --labels ${label}`,
1615
'./run.sh',
1716
];
@@ -23,7 +22,6 @@ function buildUserDataScript(githubRegistrationToken, label) {
2322
'curl -O -L https://github.com/actions/runner/releases/download/v2.286.0/actions-runner-linux-${RUNNER_ARCH}-2.286.0.tar.gz',
2423
'tar xzf ./actions-runner-linux-${RUNNER_ARCH}-2.286.0.tar.gz',
2524
'export RUNNER_ALLOW_RUNASROOT=1',
26-
'export DOTNET_SYSTEM_GLOBALIZATION_INVARIANT=1',
2725
`./config.sh --url https://github.com/${config.githubContext.owner}/${config.githubContext.repo} --token ${githubRegistrationToken} --labels ${label}`,
2826
'./run.sh',
2927
];

0 commit comments

Comments
 (0)