cdk-github-runners
cdk-github-runners copied to clipboard
Runners are not consistently reporting their status' back to GitHub
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.
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],
});