cdk-github-runners icon indicating copy to clipboard operation
cdk-github-runners copied to clipboard

Runners are not consistently reporting their status' back to GitHub

Open martinjlowm opened this issue 1 year ago • 1 comments

Cross linking this in case anyone is experiencing the same thing this week: https://github.com/actions/runner/issues/3539#issuecomment-2489730517

I think it's a GitHub-specific issue.

martinjlowm avatar Nov 21 '24 09:11 martinjlowm

It might help to pin the runner version to an older one with the runnerVersion parameter to the image builder.

const myBuilder = FargateRunnerProvider.imageBuilder(this, 'image builder', {
  runnerVersion: RunnerVersion.specific('2.320.0'),
});

const myProvider = new FargateRunnerProvider(this, 'fargate runner', {
  labels: ['customized-fargate'],
  imageBuilder: myBuilder,
});

// create the runner infrastructure
new GitHubRunners(this, 'runners', {
  providers: [myProvider],
});

kichik avatar Nov 21 '24 12:11 kichik