Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Runners are not consistently reporting their status' back to GitHub #658

Open
martinjlowm opened this issue Nov 21, 2024 · 1 comment
Open

Comments

@martinjlowm
Copy link

Cross linking this in case anyone is experiencing the same thing this week: actions/runner#3539 (comment)

I think it's a GitHub-specific issue.

@kichik
Copy link
Member

kichik commented Nov 21, 2024

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],
});

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants