@cloudsnorkel/cdk-github-runners 0.8.1 → 0.8.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (96) hide show
  1. package/.gitattributes +9 -0
  2. package/.jsii +368 -184
  3. package/API.md +1718 -512
  4. package/README.md +2 -2
  5. package/{lib/providers → assets}/docker-images/lambda/linux-arm64/runner.sh +1 -1
  6. package/{lib/providers → assets}/docker-images/lambda/linux-x64/runner.sh +1 -1
  7. package/{lib/lambdas/aws-image-builder-versioner → assets/lambdas/aws-image-builder-versioner.lambda}/index.js +5 -5
  8. package/{lib/lambdas/build-image → assets/lambdas/build-image.lambda}/index.js +5 -5
  9. package/{lib/lambdas/delete-ami → assets/lambdas/delete-ami.lambda}/index.js +2 -2
  10. package/{lib/lambdas/delete-runner → assets/lambdas/delete-runner.lambda}/index.js +1 -1
  11. package/{lib/lambdas/setup → assets/lambdas/setup.lambda}/index.js +2 -2
  12. package/{lib/lambdas/status → assets/lambdas/status.lambda}/index.js +2 -2
  13. package/{lib/lambdas/token-retriever → assets/lambdas/token-retriever.lambda}/index.js +1 -1
  14. package/{lib/lambdas/update-lambda → assets/lambdas/update-lambda.lambda}/index.js +4 -4
  15. package/{lib/lambdas/webhook-handler → assets/lambdas/webhook-handler.lambda}/index.js +2 -2
  16. package/lib/lambdas/aws-image-builder-versioner-function.d.ts +13 -0
  17. package/lib/lambdas/aws-image-builder-versioner-function.js +23 -0
  18. package/lib/lambdas/aws-image-builder-versioner.lambda.d.ts +2 -0
  19. package/lib/lambdas/aws-image-builder-versioner.lambda.js +80 -0
  20. package/lib/lambdas/build-image-function.d.ts +13 -0
  21. package/lib/lambdas/build-image-function.js +23 -0
  22. package/lib/lambdas/build-image.lambda.d.ts +2 -0
  23. package/lib/lambdas/build-image.lambda.js +92 -0
  24. package/lib/lambdas/delete-ami-function.d.ts +13 -0
  25. package/lib/lambdas/delete-ami-function.js +23 -0
  26. package/lib/lambdas/delete-ami.lambda.d.ts +1 -0
  27. package/lib/lambdas/delete-ami.lambda.js +87 -0
  28. package/lib/lambdas/delete-runner-function.d.ts +13 -0
  29. package/lib/lambdas/delete-runner-function.js +23 -0
  30. package/lib/lambdas/delete-runner.lambda.d.ts +1 -0
  31. package/lib/lambdas/delete-runner.lambda.js +69 -0
  32. package/lib/lambdas/github.d.ts +7 -0
  33. package/lib/lambdas/github.js +50 -0
  34. package/lib/lambdas/helpers.d.ts +12 -0
  35. package/lib/lambdas/helpers.js +66 -0
  36. package/lib/lambdas/setup-function.d.ts +13 -0
  37. package/lib/lambdas/setup-function.js +23 -0
  38. package/lib/lambdas/setup.lambda.d.ts +1 -0
  39. package/lib/lambdas/setup.lambda.js +148 -0
  40. package/lib/lambdas/status-function.d.ts +13 -0
  41. package/lib/lambdas/status-function.js +23 -0
  42. package/lib/lambdas/status.lambda.d.ts +1 -0
  43. package/lib/lambdas/status.lambda.js +285 -0
  44. package/lib/lambdas/token-retriever-function.d.ts +13 -0
  45. package/lib/lambdas/token-retriever-function.js +23 -0
  46. package/lib/lambdas/token-retriever.lambda.d.ts +1 -0
  47. package/lib/lambdas/token-retriever.lambda.js +15 -0
  48. package/lib/lambdas/update-lambda-function.d.ts +13 -0
  49. package/lib/lambdas/update-lambda-function.js +23 -0
  50. package/lib/lambdas/update-lambda.lambda.d.ts +7 -0
  51. package/lib/lambdas/update-lambda.lambda.js +34 -0
  52. package/lib/lambdas/webhook-handler-function.d.ts +13 -0
  53. package/lib/lambdas/webhook-handler-function.js +23 -0
  54. package/lib/lambdas/webhook-handler.lambda.d.ts +1 -0
  55. package/lib/lambdas/webhook-handler.lambda.js +107 -0
  56. package/lib/providers/codebuild.d.ts +8 -3
  57. package/lib/providers/codebuild.js +17 -9
  58. package/lib/providers/common.js +3 -3
  59. package/lib/providers/ec2.d.ts +9 -4
  60. package/lib/providers/ec2.js +14 -6
  61. package/lib/providers/fargate.d.ts +8 -3
  62. package/lib/providers/fargate.js +17 -9
  63. package/lib/providers/image-builders/ami.js +6 -3
  64. package/lib/providers/image-builders/codebuild.js +5 -3
  65. package/lib/providers/image-builders/common.js +5 -3
  66. package/lib/providers/image-builders/container.js +5 -3
  67. package/lib/providers/image-builders/linux-components.js +1 -1
  68. package/lib/providers/image-builders/static.js +3 -3
  69. package/lib/providers/image-builders/windows-components.js +1 -1
  70. package/lib/providers/lambda.d.ts +8 -3
  71. package/lib/providers/lambda.js +20 -10
  72. package/lib/runner.js +17 -10
  73. package/lib/secrets.js +1 -1
  74. package/lib/utils.d.ts +2 -6
  75. package/lib/utils.js +11 -26
  76. package/lib/webhook.d.ts +2 -2
  77. package/lib/webhook.js +5 -3
  78. package/package.json +28 -12
  79. package/setup/index.html +0 -12
  80. package/setup/src/App.svelte +0 -291
  81. package/setup/src/app.scss +0 -15
  82. package/setup/src/main.ts +0 -8
  83. package/setup/src/vite-env.d.ts +0 -2
  84. package/setup/svelte.config.mjs +0 -7
  85. package/setup/tsconfig.json +0 -21
  86. package/setup/tsconfig.node.json +0 -8
  87. package/setup/vite.config.ts +0 -15
  88. /package/{lib/providers → assets}/docker-images/codebuild/linux-arm64/Dockerfile +0 -0
  89. /package/{lib/providers → assets}/docker-images/codebuild/linux-x64/Dockerfile +0 -0
  90. /package/{lib/providers → assets}/docker-images/fargate/linux-arm64/Dockerfile +0 -0
  91. /package/{lib/providers → assets}/docker-images/fargate/linux-x64/Dockerfile +0 -0
  92. /package/{lib/providers → assets}/docker-images/lambda/linux-arm64/Dockerfile +0 -0
  93. /package/{lib/providers → assets}/docker-images/lambda/linux-arm64/runner.js +0 -0
  94. /package/{lib/providers → assets}/docker-images/lambda/linux-x64/Dockerfile +0 -0
  95. /package/{lib/providers → assets}/docker-images/lambda/linux-x64/runner.js +0 -0
  96. /package/{lib/lambdas/setup → assets/lambdas/setup.lambda}/index.html +0 -0
package/.jsii CHANGED
@@ -3114,7 +3114,7 @@
3114
3114
  "stability": "experimental"
3115
3115
  },
3116
3116
  "homepage": "https://github.com/CloudSnorkel/cdk-github-runners.git",
3117
- "jsiiVersion": "1.74.0 (build 6d08790)",
3117
+ "jsiiVersion": "1.75.0 (build 63bb957)",
3118
3118
  "keywords": [
3119
3119
  "aws",
3120
3120
  "aws-cdk",
@@ -3138,7 +3138,7 @@
3138
3138
  },
3139
3139
  "name": "@cloudsnorkel/cdk-github-runners",
3140
3140
  "readme": {
3141
- "markdown": "# GitHub Self-Hosted Runners CDK Constructs\n\n[![NPM](https://img.shields.io/npm/v/@cloudsnorkel/cdk-github-runners?label=npm&logo=npm)][7]\n[![PyPI](https://img.shields.io/pypi/v/cloudsnorkel.cdk-github-runners?label=pypi&logo=pypi)][6]\n[![Maven Central](https://img.shields.io/maven-central/v/com.cloudsnorkel/cdk.github.runners.svg?label=Maven%20Central&logo=java)][8]\n[![Go](https://img.shields.io/github/v/tag/CloudSnorkel/cdk-github-runners?color=red&label=go&logo=go)][11]\n[![Nuget](https://img.shields.io/nuget/v/CloudSnorkel.Cdk.Github.Runners?color=red&&logo=nuget)][12]\n[![Release](https://github.com/CloudSnorkel/cdk-github-runners/actions/workflows/release.yml/badge.svg)](https://github.com/CloudSnorkel/cdk-github-runners/actions/workflows/release.yml)\n[![License](https://img.shields.io/badge/license-Apache--2.0-blue)](https://github.com/CloudSnorkel/cdk-github-runners/blob/main/LICENSE)\n\nUse this CDK construct to create ephemeral [self-hosted GitHub runners][1] on-demand inside your AWS account.\n\n* Easy to configure GitHub integration with a web-based interface\n* Customizable runners with decent defaults\n* Multiple runner configurations controlled by labels\n* Everything fully hosted in your account\n* Automatically updated build environment with latest runner version\n\nSelf-hosted runners in AWS are useful when:\n\n* You need easy access to internal resources in your actions\n* You want to pre-install some software for your actions\n* You want to provide some basic AWS API access (but [aws-actions/configure-aws-credentials][2] has more security controls)\n\nEphemeral (or on-demand) runners are the [recommended way by GitHub][14] for auto-scaling, and they make sure all jobs run with a clean image. Runners are started on-demand. You don't pay unless a job is running.\n\n## API\n\nThe best way to browse API documentation is on [Constructs Hub][13]. It is available in all supported programming languages.\n\n## Providers\n\nA runner provider creates compute resources on-demand and uses [actions/runner][5] to start a runner.\n\n| | EC2 | CodeBuild | Fargate | Lambda |\n|------------------|-------------------|----------------------------|----------------|---------------|\n| **Time limit** | Unlimited | 8 hours | Unlimited | 15 minutes |\n| **vCPUs** | Unlimited | 2, 4, 8, or 72 | 0.25 to 4 | 1 to 6 |\n| **RAM** | Unlimited | 3gb, 7gb, 15gb, or 145gb | 512mb to 30gb | 128mb to 10gb |\n| **Storage** | Unlimited | 50gb to 824gb | 20gb to 200gb | Up to 10gb |\n| **Architecture** | x86_64, ARM64 | x86_64, ARM64 | x86_64, ARM64 | x86_64, ARM64 |\n| **sudo** | ✔ | ✔ | ✔ | ❌ |\n| **Docker** | ✔ | ✔ (Linux only) | ❌ | ❌ |\n| **Spot pricing** | ✔ | ❌ | ✔ | ❌ |\n| **OS** | Linux, Windows | Linux, Windows | Linux, Windows | Linux |\n\nThe best provider to use mostly depends on your current infrastructure. When in doubt, CodeBuild is always a good choice. Execution history and logs are easy to view, and it has no restrictive limits unless you need to run for more than 8 hours.\n\nYou can also create your own provider by implementing `IRunnerProvider`.\n\n## Installation\n\n1. Confirm you're using CDK v2\n2. Install the appropriate package\n 1. [Python][6]\n ```\n pip install cloudsnorkel.cdk-github-runners\n ```\n 2. [TypeScript or JavaScript][7]\n ```\n npm i @cloudsnorkel/cdk-github-runners\n ```\n 3. [Java][8]\n ```xml\n <dependency>\n <groupId>com.cloudsnorkel</groupId>\n <artifactId>cdk.github.runners</artifactId>\n </dependency>\n ```\n 4. [Go][11]\n ```\n go get github.com/CloudSnorkel/cdk-github-runners-go/cloudsnorkelcdkgithubrunners\n ```\n 5. [.NET][12]\n ```\n dotnet add package CloudSnorkel.Cdk.Github.Runners\n ```\n3. Use `GitHubRunners` construct in your code (starting with default arguments is fine)\n4. Deploy your stack\n5. Look for the status command output similar to `aws --region us-east-1 lambda invoke --function-name status-XYZ123 status.json`\n6. Execute the status command (you may need to specify `--profile` too) and open the resulting `status.json` file\n7. Open the URL in `github.setup.url` from `status.json` or [manually setup GitHub](SETUP_GITHUB.md) integration as an app or with personal access token\n8. Run status command again to confirm `github.auth.status` and `github.webhook.status` are OK\n9. Trigger a GitHub action that has a `self-hosted` label with `runs-on: [self-hosted, linux, codebuild]` or similar\n10. If the action is not successful, see [troubleshooting](#Troubleshooting)\n\n[![Demo](demo-thumbnail.jpg)](https://youtu.be/wlyv_3V8lIw)\n\n## Customizing\n\nThe default providers configured by `GitHubRunners` are useful for testing but probably not too much for actual production work. They run in the default VPC or no VPC and have no added IAM permissions. You would usually want to configure the providers yourself.\n\nFor example:\n\n```typescript\nlet vpc: ec2.Vpc;\nlet runnerSg: ec2.SecurityGroup;\nlet dbSg: ec2.SecurityGroup;\nlet bucket: s3.Bucket;\n\n// create a custom CodeBuild provider\nconst myProvider = new CodeBuildRunner(this, 'codebuild runner', {\n label: 'my-codebuild',\n vpc: vpc,\n securityGroup: runnerSg,\n});\n// grant some permissions to the provider\nbucket.grantReadWrite(myProvider);\ndbSg.connections.allowFrom(runnerSg, ec2.Port.tcp(3306), 'allow runners to connect to MySQL database');\n\n// create the runner infrastructure\nnew GitHubRunners(this, 'runners', {\n providers: [myProvider],\n});\n```\n\nAnother way to customize runners is by modifying the image used to spin them up. The image contains the [runner][5], any required dependencies, and integration code with the provider. You may choose to customize this image by adding more packages, for example.\n\n```typescript\nconst myBuilder = new CodeBuildImageBuilder(this, 'image builder', {\n dockerfilePath: FargateRunner.LINUX_X64_DOCKERFILE_PATH,\n runnerVersion: RunnerVersion.specific('2.291.0'),\n rebuildInterval: Duration.days(14),\n});\nmyBuilder.setBuildArg('EXTRA_PACKAGES', 'nginx xz-utils');\n\nconst myProvider = new FargateRunner(this, 'fargate runner', {\n label: 'customized-fargate',\n vpc: vpc,\n securityGroup: runnerSg,\n imageBuilder: myBuilder,\n});\n\n// create the runner infrastructure\nnew GitHubRunners(stack, 'runners', {\n providers: [myProvider],\n});\n```\n\nYour workflow will then look like:\n\n```yaml\nname: self-hosted example\non: push\njobs:\n self-hosted:\n runs-on: [self-hosted, customized-fargate]\n steps:\n - run: echo hello world\n```\n\nWindows images must be built with AWS Image Builder.\n\n```typescript\nconst myWindowsBuilder = new ContainerImageBuilder(this, 'Windows image builder', {\n architecture: Architecture.X86_64,\n os: Os.WINDOWS,\n runnerVersion: RunnerVersion.specific('2.291.0'),\n rebuildInterval: Duration.days(14),\n});\nmyWindowsBuilder.addComponent(new ImageBuilderComponent(this, 'Ninja Component',\n {\n displayName: 'Ninja',\n description: 'Download and install Ninja build system',\n platform: 'Windows',\n commands: [\n 'Invoke-WebRequest -UseBasicParsing -Uri \"https://github.com/ninja-build/ninja/releases/download/v1.11.1/ninja-win.zip\" -OutFile ninja.zip',\n 'Expand-Archive ninja.zip -DestinationPath C:\\\\actions',\n 'del ninja.zip',\n ],\n }\n));\n\nconst myProvider = new FargateRunner(this, 'fargate runner', {\n label: 'customized-windows-fargate',\n vpc: vpc,\n securityGroup: runnerSg,\n imageBuiler: myWindowsBuilder,\n});\n\n// create the runner infrastructure\nnew GitHubRunners(stack, 'runners', {\n providers: [myProvider],\n});\n```\n\n## Architecture\n\n![Architecture diagram](architecture.svg)\n\n## Troubleshooting\n\n1. Always start with the status function, make sure no errors are reported, and confirm all status codes are OK\n2. If jobs are stuck on pending:\n 1. Make sure `runs-on` in the workflow matches the expected labels set in the runner provider\n 2. If it happens every time, cancel the job and start it again\n4. Confirm the webhook Lambda was called by visiting the URL in `troubleshooting.webhookHandlerUrl` from `status.json`\n 1. If it's not called or logs errors, confirm the webhook settings on the GitHub side\n 2. If you see too many errors, make sure you're only sending `workflow_job` events\n5. When using GitHub app, make sure there are active installation in `github.auth.app.installations`\n6. Check execution details of the orchestrator step function by visiting the URL in `troubleshooting.stepFunctionUrl` from `status.json`\n 1. Use the details tab to find the specific execution of the provider (Lambda, CodeBuild, Fargate, etc.)\n 2. Every step function execution should be successful, even if the runner action inside it failed\n\n## Other Options\n\n1. [philips-labs/terraform-aws-github-runner][3] if you're using Terraform\n2. [actions/actions-runner-controller][4] if you're using Kubernetes\n\n\n[1]: https://docs.github.com/en/actions/hosting-your-own-runners/about-self-hosted-runners\n[2]: https://github.com/marketplace/actions/configure-aws-credentials-action-for-github-actions\n[3]: https://github.com/philips-labs/terraform-aws-github-runner\n[4]: https://github.com/actions/actions-runner-controller\n[5]: https://github.com/actions/runner\n[6]: https://pypi.org/project/cloudsnorkel.cdk-github-runners\n[7]: https://www.npmjs.com/package/@cloudsnorkel/cdk-github-runners\n[8]: https://search.maven.org/search?q=g:%22com.cloudsnorkel%22%20AND%20a:%22cdk.github.runners%22\n[9]: https://docs.github.com/en/developers/apps/getting-started-with-apps/about-apps\n[10]: https://docs.github.com/en/authentication/keeping-your-account-and-data-secure/creating-a-personal-access-token\n[11]: https://pkg.go.dev/github.com/CloudSnorkel/cdk-github-runners-go/cloudsnorkelcdkgithubrunners\n[12]: https://www.nuget.org/packages/CloudSnorkel.Cdk.Github.Runners/\n[13]: https://constructs.dev/packages/@cloudsnorkel/cdk-github-runners/\n[14]: https://docs.github.com/en/actions/hosting-your-own-runners/autoscaling-with-self-hosted-runners#using-ephemeral-runners-for-autoscaling\n"
3141
+ "markdown": "# GitHub Self-Hosted Runners CDK Constructs\n\n[![NPM](https://img.shields.io/npm/v/@cloudsnorkel/cdk-github-runners?label=npm&logo=npm)][7]\n[![PyPI](https://img.shields.io/pypi/v/cloudsnorkel.cdk-github-runners?label=pypi&logo=pypi)][6]\n[![Maven Central](https://img.shields.io/maven-central/v/com.cloudsnorkel/cdk.github.runners.svg?label=Maven%20Central&logo=java)][8]\n[![Go](https://img.shields.io/github/v/tag/CloudSnorkel/cdk-github-runners?color=red&label=go&logo=go)][11]\n[![Nuget](https://img.shields.io/nuget/v/CloudSnorkel.Cdk.Github.Runners?color=red&&logo=nuget)][12]\n[![Release](https://github.com/CloudSnorkel/cdk-github-runners/actions/workflows/release.yml/badge.svg)](https://github.com/CloudSnorkel/cdk-github-runners/actions/workflows/release.yml)\n[![License](https://img.shields.io/badge/license-Apache--2.0-blue)](https://github.com/CloudSnorkel/cdk-github-runners/blob/main/LICENSE)\n\nUse this CDK construct to create ephemeral [self-hosted GitHub runners][1] on-demand inside your AWS account.\n\n* Easy to configure GitHub integration with a web-based interface\n* Customizable runners with decent defaults\n* Multiple runner configurations controlled by labels\n* Everything fully hosted in your account\n* Automatically updated build environment with latest runner version\n\nSelf-hosted runners in AWS are useful when:\n\n* You need easy access to internal resources in your actions\n* You want to pre-install some software for your actions\n* You want to provide some basic AWS API access (but [aws-actions/configure-aws-credentials][2] has more security controls)\n\nEphemeral (or on-demand) runners are the [recommended way by GitHub][14] for auto-scaling, and they make sure all jobs run with a clean image. Runners are started on-demand. You don't pay unless a job is running.\n\n## API\n\nThe best way to browse API documentation is on [Constructs Hub][13]. It is available in all supported programming languages.\n\n## Providers\n\nA runner provider creates compute resources on-demand and uses [actions/runner][5] to start a runner.\n\n| | EC2 | CodeBuild | Fargate | Lambda |\n|------------------|-------------------|----------------------------|----------------|---------------|\n| **Time limit** | Unlimited | 8 hours | Unlimited | 15 minutes |\n| **vCPUs** | Unlimited | 2, 4, 8, or 72 | 0.25 to 4 | 1 to 6 |\n| **RAM** | Unlimited | 3gb, 7gb, 15gb, or 145gb | 512mb to 30gb | 128mb to 10gb |\n| **Storage** | Unlimited | 50gb to 824gb | 20gb to 200gb | Up to 10gb |\n| **Architecture** | x86_64, ARM64 | x86_64, ARM64 | x86_64, ARM64 | x86_64, ARM64 |\n| **sudo** | ✔ | ✔ | ✔ | ❌ |\n| **Docker** | ✔ | ✔ (Linux only) | ❌ | ❌ |\n| **Spot pricing** | ✔ | ❌ | ✔ | ❌ |\n| **OS** | Linux, Windows | Linux, Windows | Linux, Windows | Linux |\n\nThe best provider to use mostly depends on your current infrastructure. When in doubt, CodeBuild is always a good choice. Execution history and logs are easy to view, and it has no restrictive limits unless you need to run for more than 8 hours.\n\nYou can also create your own provider by implementing `IRunnerProvider`.\n\n## Installation\n\n1. Confirm you're using CDK v2\n2. Install the appropriate package\n 1. [Python][6]\n ```\n pip install cloudsnorkel.cdk-github-runners\n ```\n 2. [TypeScript or JavaScript][7]\n ```\n npm i @cloudsnorkel/cdk-github-runners\n ```\n 3. [Java][8]\n ```xml\n <dependency>\n <groupId>com.cloudsnorkel</groupId>\n <artifactId>cdk.github.runners</artifactId>\n </dependency>\n ```\n 4. [Go][11]\n ```\n go get github.com/CloudSnorkel/cdk-github-runners-go/cloudsnorkelcdkgithubrunners\n ```\n 5. [.NET][12]\n ```\n dotnet add package CloudSnorkel.Cdk.Github.Runners\n ```\n3. Use `GitHubRunners` construct in your code (starting with default arguments is fine)\n4. Deploy your stack\n5. Look for the status command output similar to `aws --region us-east-1 lambda invoke --function-name status-XYZ123 status.json`\n6. Execute the status command (you may need to specify `--profile` too) and open the resulting `status.json` file\n7. Open the URL in `github.setup.url` from `status.json` or [manually setup GitHub](SETUP_GITHUB.md) integration as an app or with personal access token\n8. Run status command again to confirm `github.auth.status` and `github.webhook.status` are OK\n9. Trigger a GitHub action that has a `self-hosted` label with `runs-on: [self-hosted, linux, codebuild]` or similar\n10. If the action is not successful, see [troubleshooting](#Troubleshooting)\n\n[![Demo](demo-thumbnail.jpg)](https://youtu.be/wlyv_3V8lIw)\n\n## Customizing\n\nThe default providers configured by `GitHubRunners` are useful for testing but probably not too much for actual production work. They run in the default VPC or no VPC and have no added IAM permissions. You would usually want to configure the providers yourself.\n\nFor example:\n\n```typescript\nlet vpc: ec2.Vpc;\nlet runnerSg: ec2.SecurityGroup;\nlet dbSg: ec2.SecurityGroup;\nlet bucket: s3.Bucket;\n\n// create a custom CodeBuild provider\nconst myProvider = new CodeBuildRunner(this, 'codebuild runner', {\n label: 'my-codebuild',\n vpc: vpc,\n securityGroup: runnerSg,\n});\n// grant some permissions to the provider\nbucket.grantReadWrite(myProvider);\ndbSg.connections.allowFrom(runnerSg, ec2.Port.tcp(3306), 'allow runners to connect to MySQL database');\n\n// create the runner infrastructure\nnew GitHubRunners(this, 'runners', {\n providers: [myProvider],\n});\n```\n\nAnother way to customize runners is by modifying the image used to spin them up. The image contains the [runner][5], any required dependencies, and integration code with the provider. You may choose to customize this image by adding more packages, for example.\n\n```typescript\nconst myBuilder = new CodeBuildImageBuilder(this, 'image builder', {\n dockerfilePath: FargateRunner.LINUX_X64_DOCKERFILE_PATH,\n runnerVersion: RunnerVersion.specific('2.291.0'),\n rebuildInterval: Duration.days(14),\n});\nmyBuilder.setBuildArg('EXTRA_PACKAGES', 'nginx xz-utils');\n\nconst myProvider = new FargateRunnerProvider(this, 'fargate runner', {\n label: 'customized-fargate',\n vpc: vpc,\n securityGroup: runnerSg,\n imageBuilder: myBuilder,\n});\n\n// create the runner infrastructure\nnew GitHubRunners(stack, 'runners', {\n providers: [myProvider],\n});\n```\n\nYour workflow will then look like:\n\n```yaml\nname: self-hosted example\non: push\njobs:\n self-hosted:\n runs-on: [self-hosted, customized-fargate]\n steps:\n - run: echo hello world\n```\n\nWindows images must be built with AWS Image Builder.\n\n```typescript\nconst myWindowsBuilder = new ContainerImageBuilder(this, 'Windows image builder', {\n architecture: Architecture.X86_64,\n os: Os.WINDOWS,\n runnerVersion: RunnerVersion.specific('2.291.0'),\n rebuildInterval: Duration.days(14),\n});\nmyWindowsBuilder.addComponent(new ImageBuilderComponent(this, 'Ninja Component',\n {\n displayName: 'Ninja',\n description: 'Download and install Ninja build system',\n platform: 'Windows',\n commands: [\n 'Invoke-WebRequest -UseBasicParsing -Uri \"https://github.com/ninja-build/ninja/releases/download/v1.11.1/ninja-win.zip\" -OutFile ninja.zip',\n 'Expand-Archive ninja.zip -DestinationPath C:\\\\actions',\n 'del ninja.zip',\n ],\n }\n));\n\nconst myProvider = new FargateRunnerProvider(this, 'fargate runner', {\n label: 'customized-windows-fargate',\n vpc: vpc,\n securityGroup: runnerSg,\n imageBuiler: myWindowsBuilder,\n});\n\n// create the runner infrastructure\nnew GitHubRunners(stack, 'runners', {\n providers: [myProvider],\n});\n```\n\n## Architecture\n\n![Architecture diagram](architecture.svg)\n\n## Troubleshooting\n\n1. Always start with the status function, make sure no errors are reported, and confirm all status codes are OK\n2. If jobs are stuck on pending:\n 1. Make sure `runs-on` in the workflow matches the expected labels set in the runner provider\n 2. If it happens every time, cancel the job and start it again\n4. Confirm the webhook Lambda was called by visiting the URL in `troubleshooting.webhookHandlerUrl` from `status.json`\n 1. If it's not called or logs errors, confirm the webhook settings on the GitHub side\n 2. If you see too many errors, make sure you're only sending `workflow_job` events\n5. When using GitHub app, make sure there are active installation in `github.auth.app.installations`\n6. Check execution details of the orchestrator step function by visiting the URL in `troubleshooting.stepFunctionUrl` from `status.json`\n 1. Use the details tab to find the specific execution of the provider (Lambda, CodeBuild, Fargate, etc.)\n 2. Every step function execution should be successful, even if the runner action inside it failed\n\n## Other Options\n\n1. [philips-labs/terraform-aws-github-runner][3] if you're using Terraform\n2. [actions/actions-runner-controller][4] if you're using Kubernetes\n\n\n[1]: https://docs.github.com/en/actions/hosting-your-own-runners/about-self-hosted-runners\n[2]: https://github.com/marketplace/actions/configure-aws-credentials-action-for-github-actions\n[3]: https://github.com/philips-labs/terraform-aws-github-runner\n[4]: https://github.com/actions/actions-runner-controller\n[5]: https://github.com/actions/runner\n[6]: https://pypi.org/project/cloudsnorkel.cdk-github-runners\n[7]: https://www.npmjs.com/package/@cloudsnorkel/cdk-github-runners\n[8]: https://search.maven.org/search?q=g:%22com.cloudsnorkel%22%20AND%20a:%22cdk.github.runners%22\n[9]: https://docs.github.com/en/developers/apps/getting-started-with-apps/about-apps\n[10]: https://docs.github.com/en/authentication/keeping-your-account-and-data-secure/creating-a-personal-access-token\n[11]: https://pkg.go.dev/github.com/CloudSnorkel/cdk-github-runners-go/cloudsnorkelcdkgithubrunners\n[12]: https://www.nuget.org/packages/CloudSnorkel.Cdk.Github.Runners/\n[13]: https://constructs.dev/packages/@cloudsnorkel/cdk-github-runners/\n[14]: https://docs.github.com/en/actions/hosting-your-own-runners/autoscaling-with-self-hosted-runners#using-ephemeral-runners-for-autoscaling\n"
3142
3142
  },
3143
3143
  "repository": {
3144
3144
  "type": "git",
@@ -3184,7 +3184,7 @@
3184
3184
  },
3185
3185
  "locationInModule": {
3186
3186
  "filename": "src/providers/image-builders/ami.ts",
3187
- "line": 230
3187
+ "line": 231
3188
3188
  },
3189
3189
  "parameters": [
3190
3190
  {
@@ -3215,7 +3215,7 @@
3215
3215
  "kind": "class",
3216
3216
  "locationInModule": {
3217
3217
  "filename": "src/providers/image-builders/ami.ts",
3218
- "line": 227
3218
+ "line": 228
3219
3219
  },
3220
3220
  "methods": [
3221
3221
  {
@@ -3225,7 +3225,7 @@
3225
3225
  },
3226
3226
  "locationInModule": {
3227
3227
  "filename": "src/providers/image-builders/ami.ts",
3228
- "line": 296
3228
+ "line": 297
3229
3229
  },
3230
3230
  "name": "addComponent",
3231
3231
  "parameters": [
@@ -3245,7 +3245,7 @@
3245
3245
  },
3246
3246
  "locationInModule": {
3247
3247
  "filename": "src/providers/image-builders/ami.ts",
3248
- "line": 311
3248
+ "line": 312
3249
3249
  },
3250
3250
  "name": "addExtraCertificates",
3251
3251
  "parameters": [
@@ -3267,7 +3267,7 @@
3267
3267
  },
3268
3268
  "locationInModule": {
3269
3269
  "filename": "src/providers/image-builders/ami.ts",
3270
- "line": 324
3270
+ "line": 325
3271
3271
  },
3272
3272
  "name": "bind",
3273
3273
  "overrides": "@cloudsnorkel/cdk-github-runners.IAmiBuilder",
@@ -3283,7 +3283,7 @@
3283
3283
  },
3284
3284
  "locationInModule": {
3285
3285
  "filename": "src/providers/image-builders/common.ts",
3286
- "line": 452
3286
+ "line": 454
3287
3287
  },
3288
3288
  "name": "createImage",
3289
3289
  "parameters": [
@@ -3333,7 +3333,7 @@
3333
3333
  },
3334
3334
  "locationInModule": {
3335
3335
  "filename": "src/providers/image-builders/common.ts",
3336
- "line": 428
3336
+ "line": 430
3337
3337
  },
3338
3338
  "name": "createInfrastructure",
3339
3339
  "parameters": [
@@ -3362,7 +3362,7 @@
3362
3362
  },
3363
3363
  "locationInModule": {
3364
3364
  "filename": "src/providers/image-builders/common.ts",
3365
- "line": 420
3365
+ "line": 422
3366
3366
  },
3367
3367
  "name": "createLog",
3368
3368
  "parameters": [
@@ -3386,7 +3386,7 @@
3386
3386
  },
3387
3387
  "locationInModule": {
3388
3388
  "filename": "src/providers/image-builders/common.ts",
3389
- "line": 469
3389
+ "line": 471
3390
3390
  },
3391
3391
  "name": "createPipeline",
3392
3392
  "parameters": [
@@ -3438,7 +3438,7 @@
3438
3438
  },
3439
3439
  "locationInModule": {
3440
3440
  "filename": "src/providers/image-builders/ami.ts",
3441
- "line": 282
3441
+ "line": 283
3442
3442
  },
3443
3443
  "name": "prependComponent",
3444
3444
  "parameters": [
@@ -3460,7 +3460,7 @@
3460
3460
  "immutable": true,
3461
3461
  "locationInModule": {
3462
3462
  "filename": "src/providers/image-builders/common.ts",
3463
- "line": 343
3463
+ "line": 345
3464
3464
  },
3465
3465
  "name": "architecture",
3466
3466
  "protected": true,
@@ -3476,7 +3476,7 @@
3476
3476
  "immutable": true,
3477
3477
  "locationInModule": {
3478
3478
  "filename": "src/providers/image-builders/common.ts",
3479
- "line": 499
3479
+ "line": 501
3480
3480
  },
3481
3481
  "name": "connections",
3482
3482
  "overrides": "aws-cdk-lib.aws_ec2.IConnectable",
@@ -3491,7 +3491,7 @@
3491
3491
  "immutable": true,
3492
3492
  "locationInModule": {
3493
3493
  "filename": "src/providers/image-builders/common.ts",
3494
- "line": 347
3494
+ "line": 349
3495
3495
  },
3496
3496
  "name": "description",
3497
3497
  "protected": true,
@@ -3506,7 +3506,7 @@
3506
3506
  "immutable": true,
3507
3507
  "locationInModule": {
3508
3508
  "filename": "src/providers/image-builders/common.ts",
3509
- "line": 344
3509
+ "line": 346
3510
3510
  },
3511
3511
  "name": "os",
3512
3512
  "protected": true,
@@ -3521,7 +3521,7 @@
3521
3521
  "immutable": true,
3522
3522
  "locationInModule": {
3523
3523
  "filename": "src/providers/image-builders/common.ts",
3524
- "line": 345
3524
+ "line": 347
3525
3525
  },
3526
3526
  "name": "platform",
3527
3527
  "protected": true,
@@ -3536,7 +3536,7 @@
3536
3536
  "immutable": true,
3537
3537
  "locationInModule": {
3538
3538
  "filename": "src/providers/image-builders/common.ts",
3539
- "line": 349
3539
+ "line": 351
3540
3540
  },
3541
3541
  "name": "runnerVersion",
3542
3542
  "protected": true,
@@ -3550,7 +3550,7 @@
3550
3550
  },
3551
3551
  "locationInModule": {
3552
3552
  "filename": "src/providers/image-builders/common.ts",
3553
- "line": 351
3553
+ "line": 353
3554
3554
  },
3555
3555
  "name": "components",
3556
3556
  "protected": true,
@@ -3577,7 +3577,7 @@
3577
3577
  "kind": "interface",
3578
3578
  "locationInModule": {
3579
3579
  "filename": "src/providers/image-builders/ami.ts",
3580
- "line": 24
3580
+ "line": 25
3581
3581
  },
3582
3582
  "name": "AmiBuilderProps",
3583
3583
  "properties": [
@@ -3591,7 +3591,7 @@
3591
3591
  "immutable": true,
3592
3592
  "locationInModule": {
3593
3593
  "filename": "src/providers/image-builders/ami.ts",
3594
- "line": 30
3594
+ "line": 31
3595
3595
  },
3596
3596
  "name": "architecture",
3597
3597
  "optional": true,
@@ -3610,7 +3610,7 @@
3610
3610
  "immutable": true,
3611
3611
  "locationInModule": {
3612
3612
  "filename": "src/providers/image-builders/ami.ts",
3613
- "line": 115
3613
+ "line": 116
3614
3614
  },
3615
3615
  "name": "installDocker",
3616
3616
  "optional": true,
@@ -3628,7 +3628,7 @@
3628
3628
  "immutable": true,
3629
3629
  "locationInModule": {
3630
3630
  "filename": "src/providers/image-builders/ami.ts",
3631
- "line": 90
3631
+ "line": 91
3632
3632
  },
3633
3633
  "name": "instanceType",
3634
3634
  "optional": true,
@@ -3647,7 +3647,7 @@
3647
3647
  "immutable": true,
3648
3648
  "locationInModule": {
3649
3649
  "filename": "src/providers/image-builders/ami.ts",
3650
- "line": 108
3650
+ "line": 109
3651
3651
  },
3652
3652
  "name": "logRemovalPolicy",
3653
3653
  "optional": true,
@@ -3666,7 +3666,7 @@
3666
3666
  "immutable": true,
3667
3667
  "locationInModule": {
3668
3668
  "filename": "src/providers/image-builders/ami.ts",
3669
- "line": 99
3669
+ "line": 100
3670
3670
  },
3671
3671
  "name": "logRetention",
3672
3672
  "optional": true,
@@ -3684,7 +3684,7 @@
3684
3684
  "immutable": true,
3685
3685
  "locationInModule": {
3686
3686
  "filename": "src/providers/image-builders/ami.ts",
3687
- "line": 37
3687
+ "line": 38
3688
3688
  },
3689
3689
  "name": "os",
3690
3690
  "optional": true,
@@ -3703,7 +3703,7 @@
3703
3703
  "immutable": true,
3704
3704
  "locationInModule": {
3705
3705
  "filename": "src/providers/image-builders/ami.ts",
3706
- "line": 53
3706
+ "line": 54
3707
3707
  },
3708
3708
  "name": "rebuildInterval",
3709
3709
  "optional": true,
@@ -3721,7 +3721,7 @@
3721
3721
  "immutable": true,
3722
3722
  "locationInModule": {
3723
3723
  "filename": "src/providers/image-builders/ami.ts",
3724
- "line": 44
3724
+ "line": 45
3725
3725
  },
3726
3726
  "name": "runnerVersion",
3727
3727
  "optional": true,
@@ -3740,7 +3740,7 @@
3740
3740
  "immutable": true,
3741
3741
  "locationInModule": {
3742
3742
  "filename": "src/providers/image-builders/ami.ts",
3743
- "line": 69
3743
+ "line": 70
3744
3744
  },
3745
3745
  "name": "securityGroup",
3746
3746
  "optional": true,
@@ -3758,7 +3758,7 @@
3758
3758
  "immutable": true,
3759
3759
  "locationInModule": {
3760
3760
  "filename": "src/providers/image-builders/ami.ts",
3761
- "line": 76
3761
+ "line": 77
3762
3762
  },
3763
3763
  "name": "securityGroups",
3764
3764
  "optional": true,
@@ -3782,7 +3782,7 @@
3782
3782
  "immutable": true,
3783
3783
  "locationInModule": {
3784
3784
  "filename": "src/providers/image-builders/ami.ts",
3785
- "line": 83
3785
+ "line": 84
3786
3786
  },
3787
3787
  "name": "subnetSelection",
3788
3788
  "optional": true,
@@ -3800,7 +3800,7 @@
3800
3800
  "immutable": true,
3801
3801
  "locationInModule": {
3802
3802
  "filename": "src/providers/image-builders/ami.ts",
3803
- "line": 60
3803
+ "line": 61
3804
3804
  },
3805
3805
  "name": "vpc",
3806
3806
  "optional": true,
@@ -3979,7 +3979,7 @@
3979
3979
  },
3980
3980
  "locationInModule": {
3981
3981
  "filename": "src/providers/image-builders/codebuild.ts",
3982
- "line": 177
3982
+ "line": 178
3983
3983
  },
3984
3984
  "parameters": [
3985
3985
  {
@@ -4008,7 +4008,7 @@
4008
4008
  "kind": "class",
4009
4009
  "locationInModule": {
4010
4010
  "filename": "src/providers/image-builders/codebuild.ts",
4011
- "line": 158
4011
+ "line": 159
4012
4012
  },
4013
4013
  "methods": [
4014
4014
  {
@@ -4019,7 +4019,7 @@
4019
4019
  },
4020
4020
  "locationInModule": {
4021
4021
  "filename": "src/providers/image-builders/codebuild.ts",
4022
- "line": 284
4022
+ "line": 285
4023
4023
  },
4024
4024
  "name": "addExtraCertificates",
4025
4025
  "parameters": [
@@ -4041,7 +4041,7 @@
4041
4041
  },
4042
4042
  "locationInModule": {
4043
4043
  "filename": "src/providers/image-builders/codebuild.ts",
4044
- "line": 218
4044
+ "line": 219
4045
4045
  },
4046
4046
  "name": "addFiles",
4047
4047
  "parameters": [
@@ -4072,7 +4072,7 @@
4072
4072
  },
4073
4073
  "locationInModule": {
4074
4074
  "filename": "src/providers/image-builders/codebuild.ts",
4075
- "line": 270
4075
+ "line": 271
4076
4076
  },
4077
4077
  "name": "addPolicyStatement",
4078
4078
  "parameters": [
@@ -4094,7 +4094,7 @@
4094
4094
  },
4095
4095
  "locationInModule": {
4096
4096
  "filename": "src/providers/image-builders/codebuild.ts",
4097
- "line": 245
4097
+ "line": 246
4098
4098
  },
4099
4099
  "name": "addPostBuildCommand",
4100
4100
  "parameters": [
@@ -4116,7 +4116,7 @@
4116
4116
  },
4117
4117
  "locationInModule": {
4118
4118
  "filename": "src/providers/image-builders/codebuild.ts",
4119
- "line": 233
4119
+ "line": 234
4120
4120
  },
4121
4121
  "name": "addPreBuildCommand",
4122
4122
  "parameters": [
@@ -4138,7 +4138,7 @@
4138
4138
  },
4139
4139
  "locationInModule": {
4140
4140
  "filename": "src/providers/image-builders/codebuild.ts",
4141
- "line": 294
4141
+ "line": 295
4142
4142
  },
4143
4143
  "name": "bind",
4144
4144
  "overrides": "@cloudsnorkel/cdk-github-runners.IImageBuilder",
@@ -4156,7 +4156,7 @@
4156
4156
  },
4157
4157
  "locationInModule": {
4158
4158
  "filename": "src/providers/image-builders/codebuild.ts",
4159
- "line": 258
4159
+ "line": 259
4160
4160
  },
4161
4161
  "name": "setBuildArg",
4162
4162
  "parameters": [
@@ -4190,7 +4190,7 @@
4190
4190
  "immutable": true,
4191
4191
  "locationInModule": {
4192
4192
  "filename": "src/providers/image-builders/codebuild.ts",
4193
- "line": 177
4193
+ "line": 178
4194
4194
  },
4195
4195
  "name": "props",
4196
4196
  "type": {
@@ -4211,7 +4211,7 @@
4211
4211
  "kind": "interface",
4212
4212
  "locationInModule": {
4213
4213
  "filename": "src/providers/image-builders/codebuild.ts",
4214
- "line": 34
4214
+ "line": 35
4215
4215
  },
4216
4216
  "name": "CodeBuildImageBuilderProps",
4217
4217
  "properties": [
@@ -4225,7 +4225,7 @@
4225
4225
  "immutable": true,
4226
4226
  "locationInModule": {
4227
4227
  "filename": "src/providers/image-builders/codebuild.ts",
4228
- "line": 52
4228
+ "line": 53
4229
4229
  },
4230
4230
  "name": "dockerfilePath",
4231
4231
  "type": {
@@ -4242,7 +4242,7 @@
4242
4242
  "immutable": true,
4243
4243
  "locationInModule": {
4244
4244
  "filename": "src/providers/image-builders/codebuild.ts",
4245
- "line": 40
4245
+ "line": 41
4246
4246
  },
4247
4247
  "name": "architecture",
4248
4248
  "optional": true,
@@ -4261,7 +4261,7 @@
4261
4261
  "immutable": true,
4262
4262
  "locationInModule": {
4263
4263
  "filename": "src/providers/image-builders/codebuild.ts",
4264
- "line": 106
4264
+ "line": 107
4265
4265
  },
4266
4266
  "name": "buildImage",
4267
4267
  "optional": true,
@@ -4280,7 +4280,7 @@
4280
4280
  "immutable": true,
4281
4281
  "locationInModule": {
4282
4282
  "filename": "src/providers/image-builders/codebuild.ts",
4283
- "line": 97
4283
+ "line": 98
4284
4284
  },
4285
4285
  "name": "computeType",
4286
4286
  "optional": true,
@@ -4299,7 +4299,7 @@
4299
4299
  "immutable": true,
4300
4300
  "locationInModule": {
4301
4301
  "filename": "src/providers/image-builders/codebuild.ts",
4302
- "line": 133
4302
+ "line": 134
4303
4303
  },
4304
4304
  "name": "logRemovalPolicy",
4305
4305
  "optional": true,
@@ -4318,7 +4318,7 @@
4318
4318
  "immutable": true,
4319
4319
  "locationInModule": {
4320
4320
  "filename": "src/providers/image-builders/codebuild.ts",
4321
- "line": 124
4321
+ "line": 125
4322
4322
  },
4323
4323
  "name": "logRetention",
4324
4324
  "optional": true,
@@ -4336,7 +4336,7 @@
4336
4336
  "immutable": true,
4337
4337
  "locationInModule": {
4338
4338
  "filename": "src/providers/image-builders/codebuild.ts",
4339
- "line": 47
4339
+ "line": 48
4340
4340
  },
4341
4341
  "name": "os",
4342
4342
  "optional": true,
@@ -4355,7 +4355,7 @@
4355
4355
  "immutable": true,
4356
4356
  "locationInModule": {
4357
4357
  "filename": "src/providers/image-builders/codebuild.ts",
4358
- "line": 68
4358
+ "line": 69
4359
4359
  },
4360
4360
  "name": "rebuildInterval",
4361
4361
  "optional": true,
@@ -4373,7 +4373,7 @@
4373
4373
  "immutable": true,
4374
4374
  "locationInModule": {
4375
4375
  "filename": "src/providers/image-builders/codebuild.ts",
4376
- "line": 59
4376
+ "line": 60
4377
4377
  },
4378
4378
  "name": "runnerVersion",
4379
4379
  "optional": true,
@@ -4391,7 +4391,7 @@
4391
4391
  "immutable": true,
4392
4392
  "locationInModule": {
4393
4393
  "filename": "src/providers/image-builders/codebuild.ts",
4394
- "line": 82
4394
+ "line": 83
4395
4395
  },
4396
4396
  "name": "securityGroup",
4397
4397
  "optional": true,
@@ -4409,7 +4409,7 @@
4409
4409
  "immutable": true,
4410
4410
  "locationInModule": {
4411
4411
  "filename": "src/providers/image-builders/codebuild.ts",
4412
- "line": 89
4412
+ "line": 90
4413
4413
  },
4414
4414
  "name": "subnetSelection",
4415
4415
  "optional": true,
@@ -4428,7 +4428,7 @@
4428
4428
  "immutable": true,
4429
4429
  "locationInModule": {
4430
4430
  "filename": "src/providers/image-builders/codebuild.ts",
4431
- "line": 115
4431
+ "line": 116
4432
4432
  },
4433
4433
  "name": "timeout",
4434
4434
  "optional": true,
@@ -4446,7 +4446,7 @@
4446
4446
  "immutable": true,
4447
4447
  "locationInModule": {
4448
4448
  "filename": "src/providers/image-builders/codebuild.ts",
4449
- "line": 75
4449
+ "line": 76
4450
4450
  },
4451
4451
  "name": "vpc",
4452
4452
  "optional": true,
@@ -4458,6 +4458,52 @@
4458
4458
  "symbolId": "src/providers/image-builders/codebuild:CodeBuildImageBuilderProps"
4459
4459
  },
4460
4460
  "@cloudsnorkel/cdk-github-runners.CodeBuildRunner": {
4461
+ "assembly": "@cloudsnorkel/cdk-github-runners",
4462
+ "base": "@cloudsnorkel/cdk-github-runners.CodeBuildRunnerProvider",
4463
+ "docs": {
4464
+ "deprecated": "use {@link CodeBuildRunnerProvider}",
4465
+ "stability": "deprecated"
4466
+ },
4467
+ "fqn": "@cloudsnorkel/cdk-github-runners.CodeBuildRunner",
4468
+ "initializer": {
4469
+ "docs": {
4470
+ "stability": "experimental"
4471
+ },
4472
+ "locationInModule": {
4473
+ "filename": "src/providers/codebuild.ts",
4474
+ "line": 178
4475
+ },
4476
+ "parameters": [
4477
+ {
4478
+ "name": "scope",
4479
+ "type": {
4480
+ "fqn": "constructs.Construct"
4481
+ }
4482
+ },
4483
+ {
4484
+ "name": "id",
4485
+ "type": {
4486
+ "primitive": "string"
4487
+ }
4488
+ },
4489
+ {
4490
+ "name": "props",
4491
+ "optional": true,
4492
+ "type": {
4493
+ "fqn": "@cloudsnorkel/cdk-github-runners.CodeBuildRunnerProviderProps"
4494
+ }
4495
+ }
4496
+ ]
4497
+ },
4498
+ "kind": "class",
4499
+ "locationInModule": {
4500
+ "filename": "src/providers/codebuild.ts",
4501
+ "line": 381
4502
+ },
4503
+ "name": "CodeBuildRunner",
4504
+ "symbolId": "src/providers/codebuild:CodeBuildRunner"
4505
+ },
4506
+ "@cloudsnorkel/cdk-github-runners.CodeBuildRunnerProvider": {
4461
4507
  "assembly": "@cloudsnorkel/cdk-github-runners",
4462
4508
  "base": "constructs.Construct",
4463
4509
  "docs": {
@@ -4465,7 +4511,7 @@
4465
4511
  "stability": "experimental",
4466
4512
  "summary": "GitHub Actions runner provider using CodeBuild to execute jobs."
4467
4513
  },
4468
- "fqn": "@cloudsnorkel/cdk-github-runners.CodeBuildRunner",
4514
+ "fqn": "@cloudsnorkel/cdk-github-runners.CodeBuildRunnerProvider",
4469
4515
  "initializer": {
4470
4516
  "docs": {
4471
4517
  "stability": "experimental"
@@ -4491,7 +4537,7 @@
4491
4537
  "name": "props",
4492
4538
  "optional": true,
4493
4539
  "type": {
4494
- "fqn": "@cloudsnorkel/cdk-github-runners.CodeBuildRunnerProps"
4540
+ "fqn": "@cloudsnorkel/cdk-github-runners.CodeBuildRunnerProviderProps"
4495
4541
  }
4496
4542
  }
4497
4543
  ]
@@ -4669,7 +4715,7 @@
4669
4715
  }
4670
4716
  }
4671
4717
  ],
4672
- "name": "CodeBuildRunner",
4718
+ "name": "CodeBuildRunnerProvider",
4673
4719
  "properties": [
4674
4720
  {
4675
4721
  "const": true,
@@ -4809,15 +4855,15 @@
4809
4855
  }
4810
4856
  }
4811
4857
  ],
4812
- "symbolId": "src/providers/codebuild:CodeBuildRunner"
4858
+ "symbolId": "src/providers/codebuild:CodeBuildRunnerProvider"
4813
4859
  },
4814
- "@cloudsnorkel/cdk-github-runners.CodeBuildRunnerProps": {
4860
+ "@cloudsnorkel/cdk-github-runners.CodeBuildRunnerProviderProps": {
4815
4861
  "assembly": "@cloudsnorkel/cdk-github-runners",
4816
4862
  "datatype": true,
4817
4863
  "docs": {
4818
4864
  "stability": "experimental"
4819
4865
  },
4820
- "fqn": "@cloudsnorkel/cdk-github-runners.CodeBuildRunnerProps",
4866
+ "fqn": "@cloudsnorkel/cdk-github-runners.CodeBuildRunnerProviderProps",
4821
4867
  "interfaces": [
4822
4868
  "@cloudsnorkel/cdk-github-runners.RunnerProviderProps"
4823
4869
  ],
@@ -4826,7 +4872,7 @@
4826
4872
  "filename": "src/providers/codebuild.ts",
4827
4873
  "line": 30
4828
4874
  },
4829
- "name": "CodeBuildRunnerProps",
4875
+ "name": "CodeBuildRunnerProviderProps",
4830
4876
  "properties": [
4831
4877
  {
4832
4878
  "abstract": true,
@@ -5026,7 +5072,7 @@
5026
5072
  }
5027
5073
  }
5028
5074
  ],
5029
- "symbolId": "src/providers/codebuild:CodeBuildRunnerProps"
5075
+ "symbolId": "src/providers/codebuild:CodeBuildRunnerProviderProps"
5030
5076
  },
5031
5077
  "@cloudsnorkel/cdk-github-runners.ContainerImageBuilder": {
5032
5078
  "assembly": "@cloudsnorkel/cdk-github-runners",
@@ -5043,7 +5089,7 @@
5043
5089
  },
5044
5090
  "locationInModule": {
5045
5091
  "filename": "src/providers/image-builders/container.ts",
5046
- "line": 230
5092
+ "line": 231
5047
5093
  },
5048
5094
  "parameters": [
5049
5095
  {
@@ -5074,7 +5120,7 @@
5074
5120
  "kind": "class",
5075
5121
  "locationInModule": {
5076
5122
  "filename": "src/providers/image-builders/container.ts",
5077
- "line": 225
5123
+ "line": 226
5078
5124
  },
5079
5125
  "methods": [
5080
5126
  {
@@ -5084,7 +5130,7 @@
5084
5130
  },
5085
5131
  "locationInModule": {
5086
5132
  "filename": "src/providers/image-builders/container.ts",
5087
- "line": 292
5133
+ "line": 293
5088
5134
  },
5089
5135
  "name": "addComponent",
5090
5136
  "parameters": [
@@ -5104,7 +5150,7 @@
5104
5150
  },
5105
5151
  "locationInModule": {
5106
5152
  "filename": "src/providers/image-builders/container.ts",
5107
- "line": 309
5153
+ "line": 310
5108
5154
  },
5109
5155
  "name": "addExtraCertificates",
5110
5156
  "parameters": [
@@ -5126,7 +5172,7 @@
5126
5172
  },
5127
5173
  "locationInModule": {
5128
5174
  "filename": "src/providers/image-builders/container.ts",
5129
- "line": 322
5175
+ "line": 323
5130
5176
  },
5131
5177
  "name": "bind",
5132
5178
  "overrides": "@cloudsnorkel/cdk-github-runners.IImageBuilder",
@@ -5142,7 +5188,7 @@
5142
5188
  },
5143
5189
  "locationInModule": {
5144
5190
  "filename": "src/providers/image-builders/common.ts",
5145
- "line": 452
5191
+ "line": 454
5146
5192
  },
5147
5193
  "name": "createImage",
5148
5194
  "parameters": [
@@ -5192,7 +5238,7 @@
5192
5238
  },
5193
5239
  "locationInModule": {
5194
5240
  "filename": "src/providers/image-builders/common.ts",
5195
- "line": 428
5241
+ "line": 430
5196
5242
  },
5197
5243
  "name": "createInfrastructure",
5198
5244
  "parameters": [
@@ -5221,7 +5267,7 @@
5221
5267
  },
5222
5268
  "locationInModule": {
5223
5269
  "filename": "src/providers/image-builders/common.ts",
5224
- "line": 420
5270
+ "line": 422
5225
5271
  },
5226
5272
  "name": "createLog",
5227
5273
  "parameters": [
@@ -5245,7 +5291,7 @@
5245
5291
  },
5246
5292
  "locationInModule": {
5247
5293
  "filename": "src/providers/image-builders/common.ts",
5248
- "line": 469
5294
+ "line": 471
5249
5295
  },
5250
5296
  "name": "createPipeline",
5251
5297
  "parameters": [
@@ -5297,7 +5343,7 @@
5297
5343
  },
5298
5344
  "locationInModule": {
5299
5345
  "filename": "src/providers/image-builders/container.ts",
5300
- "line": 278
5346
+ "line": 279
5301
5347
  },
5302
5348
  "name": "prependComponent",
5303
5349
  "parameters": [
@@ -5319,7 +5365,7 @@
5319
5365
  "immutable": true,
5320
5366
  "locationInModule": {
5321
5367
  "filename": "src/providers/image-builders/common.ts",
5322
- "line": 343
5368
+ "line": 345
5323
5369
  },
5324
5370
  "name": "architecture",
5325
5371
  "protected": true,
@@ -5335,7 +5381,7 @@
5335
5381
  "immutable": true,
5336
5382
  "locationInModule": {
5337
5383
  "filename": "src/providers/image-builders/common.ts",
5338
- "line": 499
5384
+ "line": 501
5339
5385
  },
5340
5386
  "name": "connections",
5341
5387
  "overrides": "aws-cdk-lib.aws_ec2.IConnectable",
@@ -5350,7 +5396,7 @@
5350
5396
  "immutable": true,
5351
5397
  "locationInModule": {
5352
5398
  "filename": "src/providers/image-builders/common.ts",
5353
- "line": 347
5399
+ "line": 349
5354
5400
  },
5355
5401
  "name": "description",
5356
5402
  "protected": true,
@@ -5365,7 +5411,7 @@
5365
5411
  "immutable": true,
5366
5412
  "locationInModule": {
5367
5413
  "filename": "src/providers/image-builders/common.ts",
5368
- "line": 344
5414
+ "line": 346
5369
5415
  },
5370
5416
  "name": "os",
5371
5417
  "protected": true,
@@ -5380,7 +5426,7 @@
5380
5426
  "immutable": true,
5381
5427
  "locationInModule": {
5382
5428
  "filename": "src/providers/image-builders/common.ts",
5383
- "line": 345
5429
+ "line": 347
5384
5430
  },
5385
5431
  "name": "platform",
5386
5432
  "protected": true,
@@ -5395,7 +5441,7 @@
5395
5441
  "immutable": true,
5396
5442
  "locationInModule": {
5397
5443
  "filename": "src/providers/image-builders/container.ts",
5398
- "line": 226
5444
+ "line": 227
5399
5445
  },
5400
5446
  "name": "repository",
5401
5447
  "type": {
@@ -5409,7 +5455,7 @@
5409
5455
  "immutable": true,
5410
5456
  "locationInModule": {
5411
5457
  "filename": "src/providers/image-builders/common.ts",
5412
- "line": 349
5458
+ "line": 351
5413
5459
  },
5414
5460
  "name": "runnerVersion",
5415
5461
  "protected": true,
@@ -5423,7 +5469,7 @@
5423
5469
  },
5424
5470
  "locationInModule": {
5425
5471
  "filename": "src/providers/image-builders/common.ts",
5426
- "line": 351
5472
+ "line": 353
5427
5473
  },
5428
5474
  "name": "components",
5429
5475
  "protected": true,
@@ -5450,7 +5496,7 @@
5450
5496
  "kind": "interface",
5451
5497
  "locationInModule": {
5452
5498
  "filename": "src/providers/image-builders/container.ts",
5453
- "line": 29
5499
+ "line": 30
5454
5500
  },
5455
5501
  "name": "ContainerImageBuilderProps",
5456
5502
  "properties": [
@@ -5464,7 +5510,7 @@
5464
5510
  "immutable": true,
5465
5511
  "locationInModule": {
5466
5512
  "filename": "src/providers/image-builders/container.ts",
5467
- "line": 35
5513
+ "line": 36
5468
5514
  },
5469
5515
  "name": "architecture",
5470
5516
  "optional": true,
@@ -5482,7 +5528,7 @@
5482
5528
  "immutable": true,
5483
5529
  "locationInModule": {
5484
5530
  "filename": "src/providers/image-builders/container.ts",
5485
- "line": 102
5531
+ "line": 103
5486
5532
  },
5487
5533
  "name": "instanceType",
5488
5534
  "optional": true,
@@ -5501,7 +5547,7 @@
5501
5547
  "immutable": true,
5502
5548
  "locationInModule": {
5503
5549
  "filename": "src/providers/image-builders/container.ts",
5504
- "line": 120
5550
+ "line": 121
5505
5551
  },
5506
5552
  "name": "logRemovalPolicy",
5507
5553
  "optional": true,
@@ -5520,7 +5566,7 @@
5520
5566
  "immutable": true,
5521
5567
  "locationInModule": {
5522
5568
  "filename": "src/providers/image-builders/container.ts",
5523
- "line": 111
5569
+ "line": 112
5524
5570
  },
5525
5571
  "name": "logRetention",
5526
5572
  "optional": true,
@@ -5538,7 +5584,7 @@
5538
5584
  "immutable": true,
5539
5585
  "locationInModule": {
5540
5586
  "filename": "src/providers/image-builders/container.ts",
5541
- "line": 42
5587
+ "line": 43
5542
5588
  },
5543
5589
  "name": "os",
5544
5590
  "optional": true,
@@ -5557,7 +5603,7 @@
5557
5603
  "immutable": true,
5558
5604
  "locationInModule": {
5559
5605
  "filename": "src/providers/image-builders/container.ts",
5560
- "line": 49
5606
+ "line": 50
5561
5607
  },
5562
5608
  "name": "parentImage",
5563
5609
  "optional": true,
@@ -5576,7 +5622,7 @@
5576
5622
  "immutable": true,
5577
5623
  "locationInModule": {
5578
5624
  "filename": "src/providers/image-builders/container.ts",
5579
- "line": 65
5625
+ "line": 66
5580
5626
  },
5581
5627
  "name": "rebuildInterval",
5582
5628
  "optional": true,
@@ -5594,7 +5640,7 @@
5594
5640
  "immutable": true,
5595
5641
  "locationInModule": {
5596
5642
  "filename": "src/providers/image-builders/container.ts",
5597
- "line": 56
5643
+ "line": 57
5598
5644
  },
5599
5645
  "name": "runnerVersion",
5600
5646
  "optional": true,
@@ -5613,7 +5659,7 @@
5613
5659
  "immutable": true,
5614
5660
  "locationInModule": {
5615
5661
  "filename": "src/providers/image-builders/container.ts",
5616
- "line": 81
5662
+ "line": 82
5617
5663
  },
5618
5664
  "name": "securityGroup",
5619
5665
  "optional": true,
@@ -5631,7 +5677,7 @@
5631
5677
  "immutable": true,
5632
5678
  "locationInModule": {
5633
5679
  "filename": "src/providers/image-builders/container.ts",
5634
- "line": 88
5680
+ "line": 89
5635
5681
  },
5636
5682
  "name": "securityGroups",
5637
5683
  "optional": true,
@@ -5654,7 +5700,7 @@
5654
5700
  "immutable": true,
5655
5701
  "locationInModule": {
5656
5702
  "filename": "src/providers/image-builders/container.ts",
5657
- "line": 95
5703
+ "line": 96
5658
5704
  },
5659
5705
  "name": "subnetSelection",
5660
5706
  "optional": true,
@@ -5672,7 +5718,7 @@
5672
5718
  "immutable": true,
5673
5719
  "locationInModule": {
5674
5720
  "filename": "src/providers/image-builders/container.ts",
5675
- "line": 72
5721
+ "line": 73
5676
5722
  },
5677
5723
  "name": "vpc",
5678
5724
  "optional": true,
@@ -5684,6 +5730,52 @@
5684
5730
  "symbolId": "src/providers/image-builders/container:ContainerImageBuilderProps"
5685
5731
  },
5686
5732
  "@cloudsnorkel/cdk-github-runners.Ec2Runner": {
5733
+ "assembly": "@cloudsnorkel/cdk-github-runners",
5734
+ "base": "@cloudsnorkel/cdk-github-runners.Ec2RunnerProvider",
5735
+ "docs": {
5736
+ "deprecated": "use {@link Ec2RunnerProvider}",
5737
+ "stability": "deprecated"
5738
+ },
5739
+ "fqn": "@cloudsnorkel/cdk-github-runners.Ec2Runner",
5740
+ "initializer": {
5741
+ "docs": {
5742
+ "stability": "experimental"
5743
+ },
5744
+ "locationInModule": {
5745
+ "filename": "src/providers/ec2.ts",
5746
+ "line": 252
5747
+ },
5748
+ "parameters": [
5749
+ {
5750
+ "name": "scope",
5751
+ "type": {
5752
+ "fqn": "constructs.Construct"
5753
+ }
5754
+ },
5755
+ {
5756
+ "name": "id",
5757
+ "type": {
5758
+ "primitive": "string"
5759
+ }
5760
+ },
5761
+ {
5762
+ "name": "props",
5763
+ "optional": true,
5764
+ "type": {
5765
+ "fqn": "@cloudsnorkel/cdk-github-runners.Ec2RunnerProviderProps"
5766
+ }
5767
+ }
5768
+ ]
5769
+ },
5770
+ "kind": "class",
5771
+ "locationInModule": {
5772
+ "filename": "src/providers/ec2.ts",
5773
+ "line": 469
5774
+ },
5775
+ "name": "Ec2Runner",
5776
+ "symbolId": "src/providers/ec2:Ec2Runner"
5777
+ },
5778
+ "@cloudsnorkel/cdk-github-runners.Ec2RunnerProvider": {
5687
5779
  "assembly": "@cloudsnorkel/cdk-github-runners",
5688
5780
  "base": "constructs.Construct",
5689
5781
  "docs": {
@@ -5691,7 +5783,7 @@
5691
5783
  "stability": "experimental",
5692
5784
  "summary": "GitHub Actions runner provider using EC2 to execute jobs."
5693
5785
  },
5694
- "fqn": "@cloudsnorkel/cdk-github-runners.Ec2Runner",
5786
+ "fqn": "@cloudsnorkel/cdk-github-runners.Ec2RunnerProvider",
5695
5787
  "initializer": {
5696
5788
  "docs": {
5697
5789
  "stability": "experimental"
@@ -5717,7 +5809,7 @@
5717
5809
  "name": "props",
5718
5810
  "optional": true,
5719
5811
  "type": {
5720
- "fqn": "@cloudsnorkel/cdk-github-runners.Ec2RunnerProps"
5812
+ "fqn": "@cloudsnorkel/cdk-github-runners.Ec2RunnerProviderProps"
5721
5813
  }
5722
5814
  }
5723
5815
  ]
@@ -5895,7 +5987,7 @@
5895
5987
  }
5896
5988
  }
5897
5989
  ],
5898
- "name": "Ec2Runner",
5990
+ "name": "Ec2RunnerProvider",
5899
5991
  "properties": [
5900
5992
  {
5901
5993
  "docs": {
@@ -5968,16 +6060,16 @@
5968
6060
  }
5969
6061
  }
5970
6062
  ],
5971
- "symbolId": "src/providers/ec2:Ec2Runner"
6063
+ "symbolId": "src/providers/ec2:Ec2RunnerProvider"
5972
6064
  },
5973
- "@cloudsnorkel/cdk-github-runners.Ec2RunnerProps": {
6065
+ "@cloudsnorkel/cdk-github-runners.Ec2RunnerProviderProps": {
5974
6066
  "assembly": "@cloudsnorkel/cdk-github-runners",
5975
6067
  "datatype": true,
5976
6068
  "docs": {
5977
6069
  "stability": "experimental",
5978
- "summary": "Properties for {@link Ec2Runner} construct."
6070
+ "summary": "Properties for {@link Ec2RunnerProvider} construct."
5979
6071
  },
5980
- "fqn": "@cloudsnorkel/cdk-github-runners.Ec2RunnerProps",
6072
+ "fqn": "@cloudsnorkel/cdk-github-runners.Ec2RunnerProviderProps",
5981
6073
  "interfaces": [
5982
6074
  "@cloudsnorkel/cdk-github-runners.RunnerProviderProps"
5983
6075
  ],
@@ -5986,7 +6078,7 @@
5986
6078
  "filename": "src/providers/ec2.ts",
5987
6079
  "line": 132
5988
6080
  },
5989
- "name": "Ec2RunnerProps",
6081
+ "name": "Ec2RunnerProviderProps",
5990
6082
  "properties": [
5991
6083
  {
5992
6084
  "abstract": true,
@@ -6204,9 +6296,55 @@
6204
6296
  }
6205
6297
  }
6206
6298
  ],
6207
- "symbolId": "src/providers/ec2:Ec2RunnerProps"
6299
+ "symbolId": "src/providers/ec2:Ec2RunnerProviderProps"
6208
6300
  },
6209
6301
  "@cloudsnorkel/cdk-github-runners.FargateRunner": {
6302
+ "assembly": "@cloudsnorkel/cdk-github-runners",
6303
+ "base": "@cloudsnorkel/cdk-github-runners.FargateRunnerProvider",
6304
+ "docs": {
6305
+ "deprecated": "use {@link FargateRunnerProvider}",
6306
+ "stability": "deprecated"
6307
+ },
6308
+ "fqn": "@cloudsnorkel/cdk-github-runners.FargateRunner",
6309
+ "initializer": {
6310
+ "docs": {
6311
+ "stability": "experimental"
6312
+ },
6313
+ "locationInModule": {
6314
+ "filename": "src/providers/fargate.ts",
6315
+ "line": 288
6316
+ },
6317
+ "parameters": [
6318
+ {
6319
+ "name": "scope",
6320
+ "type": {
6321
+ "fqn": "constructs.Construct"
6322
+ }
6323
+ },
6324
+ {
6325
+ "name": "id",
6326
+ "type": {
6327
+ "primitive": "string"
6328
+ }
6329
+ },
6330
+ {
6331
+ "name": "props",
6332
+ "optional": true,
6333
+ "type": {
6334
+ "fqn": "@cloudsnorkel/cdk-github-runners.FargateRunnerProviderProps"
6335
+ }
6336
+ }
6337
+ ]
6338
+ },
6339
+ "kind": "class",
6340
+ "locationInModule": {
6341
+ "filename": "src/providers/fargate.ts",
6342
+ "line": 479
6343
+ },
6344
+ "name": "FargateRunner",
6345
+ "symbolId": "src/providers/fargate:FargateRunner"
6346
+ },
6347
+ "@cloudsnorkel/cdk-github-runners.FargateRunnerProvider": {
6210
6348
  "assembly": "@cloudsnorkel/cdk-github-runners",
6211
6349
  "base": "constructs.Construct",
6212
6350
  "docs": {
@@ -6214,7 +6352,7 @@
6214
6352
  "stability": "experimental",
6215
6353
  "summary": "GitHub Actions runner provider using Fargate to execute jobs."
6216
6354
  },
6217
- "fqn": "@cloudsnorkel/cdk-github-runners.FargateRunner",
6355
+ "fqn": "@cloudsnorkel/cdk-github-runners.FargateRunnerProvider",
6218
6356
  "initializer": {
6219
6357
  "docs": {
6220
6358
  "stability": "experimental"
@@ -6240,7 +6378,7 @@
6240
6378
  "name": "props",
6241
6379
  "optional": true,
6242
6380
  "type": {
6243
- "fqn": "@cloudsnorkel/cdk-github-runners.FargateRunnerProps"
6381
+ "fqn": "@cloudsnorkel/cdk-github-runners.FargateRunnerProviderProps"
6244
6382
  }
6245
6383
  }
6246
6384
  ]
@@ -6418,7 +6556,7 @@
6418
6556
  }
6419
6557
  }
6420
6558
  ],
6421
- "name": "FargateRunner",
6559
+ "name": "FargateRunnerProvider",
6422
6560
  "properties": [
6423
6561
  {
6424
6562
  "const": true,
@@ -6650,16 +6788,16 @@
6650
6788
  }
6651
6789
  }
6652
6790
  ],
6653
- "symbolId": "src/providers/fargate:FargateRunner"
6791
+ "symbolId": "src/providers/fargate:FargateRunnerProvider"
6654
6792
  },
6655
- "@cloudsnorkel/cdk-github-runners.FargateRunnerProps": {
6793
+ "@cloudsnorkel/cdk-github-runners.FargateRunnerProviderProps": {
6656
6794
  "assembly": "@cloudsnorkel/cdk-github-runners",
6657
6795
  "datatype": true,
6658
6796
  "docs": {
6659
6797
  "stability": "experimental",
6660
6798
  "summary": "Properties for FargateRunner."
6661
6799
  },
6662
- "fqn": "@cloudsnorkel/cdk-github-runners.FargateRunnerProps",
6800
+ "fqn": "@cloudsnorkel/cdk-github-runners.FargateRunnerProviderProps",
6663
6801
  "interfaces": [
6664
6802
  "@cloudsnorkel/cdk-github-runners.RunnerProviderProps"
6665
6803
  ],
@@ -6668,7 +6806,7 @@
6668
6806
  "filename": "src/providers/fargate.ts",
6669
6807
  "line": 31
6670
6808
  },
6671
- "name": "FargateRunnerProps",
6809
+ "name": "FargateRunnerProviderProps",
6672
6810
  "properties": [
6673
6811
  {
6674
6812
  "abstract": true,
@@ -6924,7 +7062,7 @@
6924
7062
  }
6925
7063
  }
6926
7064
  ],
6927
- "symbolId": "src/providers/fargate:FargateRunnerProps"
7065
+ "symbolId": "src/providers/fargate:FargateRunnerProviderProps"
6928
7066
  },
6929
7067
  "@cloudsnorkel/cdk-github-runners.GitHubRunners": {
6930
7068
  "assembly": "@cloudsnorkel/cdk-github-runners",
@@ -6941,7 +7079,7 @@
6941
7079
  },
6942
7080
  "locationInModule": {
6943
7081
  "filename": "src/runner.ts",
6944
- "line": 190
7082
+ "line": 193
6945
7083
  },
6946
7084
  "parameters": [
6947
7085
  {
@@ -6968,7 +7106,7 @@
6968
7106
  "kind": "class",
6969
7107
  "locationInModule": {
6970
7108
  "filename": "src/runner.ts",
6971
- "line": 171
7109
+ "line": 174
6972
7110
  },
6973
7111
  "methods": [
6974
7112
  {
@@ -6979,7 +7117,7 @@
6979
7117
  },
6980
7118
  "locationInModule": {
6981
7119
  "filename": "src/runner.ts",
6982
- "line": 560
7120
+ "line": 567
6983
7121
  },
6984
7122
  "name": "metricFailed",
6985
7123
  "parameters": [
@@ -7005,7 +7143,7 @@
7005
7143
  },
7006
7144
  "locationInModule": {
7007
7145
  "filename": "src/runner.ts",
7008
- "line": 505
7146
+ "line": 512
7009
7147
  },
7010
7148
  "name": "metricJobCompleted",
7011
7149
  "parameters": [
@@ -7031,7 +7169,7 @@
7031
7169
  },
7032
7170
  "locationInModule": {
7033
7171
  "filename": "src/runner.ts",
7034
- "line": 551
7172
+ "line": 558
7035
7173
  },
7036
7174
  "name": "metricSucceeded",
7037
7175
  "parameters": [
@@ -7057,7 +7195,7 @@
7057
7195
  },
7058
7196
  "locationInModule": {
7059
7197
  "filename": "src/runner.ts",
7060
- "line": 567
7198
+ "line": 574
7061
7199
  },
7062
7200
  "name": "metricTime",
7063
7201
  "parameters": [
@@ -7086,7 +7224,7 @@
7086
7224
  "immutable": true,
7087
7225
  "locationInModule": {
7088
7226
  "filename": "src/runner.ts",
7089
- "line": 175
7227
+ "line": 178
7090
7228
  },
7091
7229
  "name": "providers",
7092
7230
  "type": {
@@ -7106,7 +7244,7 @@
7106
7244
  "immutable": true,
7107
7245
  "locationInModule": {
7108
7246
  "filename": "src/runner.ts",
7109
- "line": 180
7247
+ "line": 183
7110
7248
  },
7111
7249
  "name": "secrets",
7112
7250
  "type": {
@@ -7120,7 +7258,7 @@
7120
7258
  "immutable": true,
7121
7259
  "locationInModule": {
7122
7260
  "filename": "src/runner.ts",
7123
- "line": 190
7261
+ "line": 193
7124
7262
  },
7125
7263
  "name": "props",
7126
7264
  "optional": true,
@@ -7142,7 +7280,7 @@
7142
7280
  "kind": "interface",
7143
7281
  "locationInModule": {
7144
7282
  "filename": "src/runner.ts",
7145
- "line": 26
7283
+ "line": 29
7146
7284
  },
7147
7285
  "name": "GitHubRunnersProps",
7148
7286
  "properties": [
@@ -7157,7 +7295,7 @@
7157
7295
  "immutable": true,
7158
7296
  "locationInModule": {
7159
7297
  "filename": "src/runner.ts",
7160
- "line": 49
7298
+ "line": 52
7161
7299
  },
7162
7300
  "name": "allowPublicSubnet",
7163
7301
  "optional": true,
@@ -7175,7 +7313,7 @@
7175
7313
  "immutable": true,
7176
7314
  "locationInModule": {
7177
7315
  "filename": "src/runner.ts",
7178
- "line": 81
7316
+ "line": 84
7179
7317
  },
7180
7318
  "name": "extraCertificates",
7181
7319
  "optional": true,
@@ -7194,7 +7332,7 @@
7194
7332
  "immutable": true,
7195
7333
  "locationInModule": {
7196
7334
  "filename": "src/runner.ts",
7197
- "line": 88
7335
+ "line": 91
7198
7336
  },
7199
7337
  "name": "idleTimeout",
7200
7338
  "optional": true,
@@ -7212,7 +7350,7 @@
7212
7350
  "immutable": true,
7213
7351
  "locationInModule": {
7214
7352
  "filename": "src/runner.ts",
7215
- "line": 95
7353
+ "line": 98
7216
7354
  },
7217
7355
  "name": "logOptions",
7218
7356
  "optional": true,
@@ -7231,7 +7369,7 @@
7231
7369
  "immutable": true,
7232
7370
  "locationInModule": {
7233
7371
  "filename": "src/runner.ts",
7234
- "line": 32
7372
+ "line": 35
7235
7373
  },
7236
7374
  "name": "providers",
7237
7375
  "optional": true,
@@ -7254,7 +7392,7 @@
7254
7392
  "immutable": true,
7255
7393
  "locationInModule": {
7256
7394
  "filename": "src/runner.ts",
7257
- "line": 54
7395
+ "line": 57
7258
7396
  },
7259
7397
  "name": "securityGroup",
7260
7398
  "optional": true,
@@ -7272,7 +7410,7 @@
7272
7410
  "immutable": true,
7273
7411
  "locationInModule": {
7274
7412
  "filename": "src/runner.ts",
7275
- "line": 37
7413
+ "line": 40
7276
7414
  },
7277
7415
  "name": "vpc",
7278
7416
  "optional": true,
@@ -7290,7 +7428,7 @@
7290
7428
  "immutable": true,
7291
7429
  "locationInModule": {
7292
7430
  "filename": "src/runner.ts",
7293
- "line": 42
7431
+ "line": 45
7294
7432
  },
7295
7433
  "name": "vpcSubnets",
7296
7434
  "optional": true,
@@ -7809,7 +7947,7 @@
7809
7947
  "kind": "interface",
7810
7948
  "locationInModule": {
7811
7949
  "filename": "src/providers/image-builders/common.ts",
7812
- "line": 69
7950
+ "line": 71
7813
7951
  },
7814
7952
  "name": "ImageBuilderAsset",
7815
7953
  "properties": [
@@ -7822,7 +7960,7 @@
7822
7960
  "immutable": true,
7823
7961
  "locationInModule": {
7824
7962
  "filename": "src/providers/image-builders/common.ts",
7825
- "line": 78
7963
+ "line": 80
7826
7964
  },
7827
7965
  "name": "asset",
7828
7966
  "type": {
@@ -7838,7 +7976,7 @@
7838
7976
  "immutable": true,
7839
7977
  "locationInModule": {
7840
7978
  "filename": "src/providers/image-builders/common.ts",
7841
- "line": 73
7979
+ "line": 75
7842
7980
  },
7843
7981
  "name": "path",
7844
7982
  "type": {
@@ -7863,7 +8001,7 @@
7863
8001
  },
7864
8002
  "locationInModule": {
7865
8003
  "filename": "src/providers/image-builders/common.ts",
7866
- "line": 143
8004
+ "line": 145
7867
8005
  },
7868
8006
  "parameters": [
7869
8007
  {
@@ -7889,7 +8027,7 @@
7889
8027
  "kind": "class",
7890
8028
  "locationInModule": {
7891
8029
  "filename": "src/providers/image-builders/common.ts",
7892
- "line": 130
8030
+ "line": 132
7893
8031
  },
7894
8032
  "methods": [
7895
8033
  {
@@ -7899,7 +8037,7 @@
7899
8037
  },
7900
8038
  "locationInModule": {
7901
8039
  "filename": "src/providers/image-builders/common.ts",
7902
- "line": 236
8040
+ "line": 238
7903
8041
  },
7904
8042
  "name": "grantAssetsRead",
7905
8043
  "parameters": [
@@ -7917,7 +8055,7 @@
7917
8055
  },
7918
8056
  "locationInModule": {
7919
8057
  "filename": "src/providers/image-builders/common.ts",
7920
- "line": 36
8058
+ "line": 37
7921
8059
  },
7922
8060
  "name": "version",
7923
8061
  "parameters": [
@@ -7958,7 +8096,7 @@
7958
8096
  "immutable": true,
7959
8097
  "locationInModule": {
7960
8098
  "filename": "src/providers/image-builders/common.ts",
7961
- "line": 134
8099
+ "line": 136
7962
8100
  },
7963
8101
  "name": "arn",
7964
8102
  "type": {
@@ -7973,7 +8111,7 @@
7973
8111
  "immutable": true,
7974
8112
  "locationInModule": {
7975
8113
  "filename": "src/providers/image-builders/common.ts",
7976
- "line": 139
8114
+ "line": 141
7977
8115
  },
7978
8116
  "name": "platform",
7979
8117
  "type": {
@@ -7994,7 +8132,7 @@
7994
8132
  "kind": "interface",
7995
8133
  "locationInModule": {
7996
8134
  "filename": "src/providers/image-builders/common.ts",
7997
- "line": 84
8135
+ "line": 86
7998
8136
  },
7999
8137
  "name": "ImageBuilderComponentProperties",
8000
8138
  "properties": [
@@ -8008,7 +8146,7 @@
8008
8146
  "immutable": true,
8009
8147
  "locationInModule": {
8010
8148
  "filename": "src/providers/image-builders/common.ts",
8011
- "line": 105
8149
+ "line": 107
8012
8150
  },
8013
8151
  "name": "commands",
8014
8152
  "type": {
@@ -8029,7 +8167,7 @@
8029
8167
  "immutable": true,
8030
8168
  "locationInModule": {
8031
8169
  "filename": "src/providers/image-builders/common.ts",
8032
- "line": 98
8170
+ "line": 100
8033
8171
  },
8034
8172
  "name": "description",
8035
8173
  "type": {
@@ -8045,7 +8183,7 @@
8045
8183
  "immutable": true,
8046
8184
  "locationInModule": {
8047
8185
  "filename": "src/providers/image-builders/common.ts",
8048
- "line": 93
8186
+ "line": 95
8049
8187
  },
8050
8188
  "name": "displayName",
8051
8189
  "type": {
@@ -8062,7 +8200,7 @@
8062
8200
  "immutable": true,
8063
8201
  "locationInModule": {
8064
8202
  "filename": "src/providers/image-builders/common.ts",
8065
- "line": 88
8203
+ "line": 90
8066
8204
  },
8067
8205
  "name": "platform",
8068
8206
  "type": {
@@ -8078,7 +8216,7 @@
8078
8216
  "immutable": true,
8079
8217
  "locationInModule": {
8080
8218
  "filename": "src/providers/image-builders/common.ts",
8081
- "line": 110
8219
+ "line": 112
8082
8220
  },
8083
8221
  "name": "assets",
8084
8222
  "optional": true,
@@ -8095,6 +8233,52 @@
8095
8233
  "symbolId": "src/providers/image-builders/common:ImageBuilderComponentProperties"
8096
8234
  },
8097
8235
  "@cloudsnorkel/cdk-github-runners.LambdaRunner": {
8236
+ "assembly": "@cloudsnorkel/cdk-github-runners",
8237
+ "base": "@cloudsnorkel/cdk-github-runners.LambdaRunnerProvider",
8238
+ "docs": {
8239
+ "deprecated": "use {@link LambdaRunnerProvider}",
8240
+ "stability": "deprecated"
8241
+ },
8242
+ "fqn": "@cloudsnorkel/cdk-github-runners.LambdaRunner",
8243
+ "initializer": {
8244
+ "docs": {
8245
+ "stability": "experimental"
8246
+ },
8247
+ "locationInModule": {
8248
+ "filename": "src/providers/lambda.ts",
8249
+ "line": 174
8250
+ },
8251
+ "parameters": [
8252
+ {
8253
+ "name": "scope",
8254
+ "type": {
8255
+ "fqn": "constructs.Construct"
8256
+ }
8257
+ },
8258
+ {
8259
+ "name": "id",
8260
+ "type": {
8261
+ "primitive": "string"
8262
+ }
8263
+ },
8264
+ {
8265
+ "name": "props",
8266
+ "optional": true,
8267
+ "type": {
8268
+ "fqn": "@cloudsnorkel/cdk-github-runners.LambdaRunnerProviderProps"
8269
+ }
8270
+ }
8271
+ ]
8272
+ },
8273
+ "kind": "class",
8274
+ "locationInModule": {
8275
+ "filename": "src/providers/lambda.ts",
8276
+ "line": 400
8277
+ },
8278
+ "name": "LambdaRunner",
8279
+ "symbolId": "src/providers/lambda:LambdaRunner"
8280
+ },
8281
+ "@cloudsnorkel/cdk-github-runners.LambdaRunnerProvider": {
8098
8282
  "assembly": "@cloudsnorkel/cdk-github-runners",
8099
8283
  "base": "constructs.Construct",
8100
8284
  "docs": {
@@ -8102,14 +8286,14 @@
8102
8286
  "stability": "experimental",
8103
8287
  "summary": "GitHub Actions runner provider using Lambda to execute jobs."
8104
8288
  },
8105
- "fqn": "@cloudsnorkel/cdk-github-runners.LambdaRunner",
8289
+ "fqn": "@cloudsnorkel/cdk-github-runners.LambdaRunnerProvider",
8106
8290
  "initializer": {
8107
8291
  "docs": {
8108
8292
  "stability": "experimental"
8109
8293
  },
8110
8294
  "locationInModule": {
8111
8295
  "filename": "src/providers/lambda.ts",
8112
- "line": 173
8296
+ "line": 174
8113
8297
  },
8114
8298
  "parameters": [
8115
8299
  {
@@ -8128,7 +8312,7 @@
8128
8312
  "name": "props",
8129
8313
  "optional": true,
8130
8314
  "type": {
8131
- "fqn": "@cloudsnorkel/cdk-github-runners.LambdaRunnerProps"
8315
+ "fqn": "@cloudsnorkel/cdk-github-runners.LambdaRunnerProviderProps"
8132
8316
  }
8133
8317
  }
8134
8318
  ]
@@ -8139,7 +8323,7 @@
8139
8323
  "kind": "class",
8140
8324
  "locationInModule": {
8141
8325
  "filename": "src/providers/lambda.ts",
8142
- "line": 124
8326
+ "line": 125
8143
8327
  },
8144
8328
  "methods": [
8145
8329
  {
@@ -8189,7 +8373,7 @@
8189
8373
  },
8190
8374
  "locationInModule": {
8191
8375
  "filename": "src/providers/lambda.ts",
8192
- "line": 254
8376
+ "line": 255
8193
8377
  },
8194
8378
  "name": "getStepFunctionTask",
8195
8379
  "overrides": "@cloudsnorkel/cdk-github-runners.IRunnerProvider",
@@ -8218,7 +8402,7 @@
8218
8402
  },
8219
8403
  "locationInModule": {
8220
8404
  "filename": "src/providers/lambda.ts",
8221
- "line": 316
8405
+ "line": 318
8222
8406
  },
8223
8407
  "name": "grantStateMachine",
8224
8408
  "overrides": "@cloudsnorkel/cdk-github-runners.IRunnerProvider",
@@ -8287,7 +8471,7 @@
8287
8471
  },
8288
8472
  "locationInModule": {
8289
8473
  "filename": "src/providers/lambda.ts",
8290
- "line": 319
8474
+ "line": 321
8291
8475
  },
8292
8476
  "name": "status",
8293
8477
  "overrides": "@cloudsnorkel/cdk-github-runners.IRunnerProvider",
@@ -8306,7 +8490,7 @@
8306
8490
  }
8307
8491
  }
8308
8492
  ],
8309
- "name": "LambdaRunner",
8493
+ "name": "LambdaRunnerProvider",
8310
8494
  "properties": [
8311
8495
  {
8312
8496
  "const": true,
@@ -8318,7 +8502,7 @@
8318
8502
  "immutable": true,
8319
8503
  "locationInModule": {
8320
8504
  "filename": "src/providers/lambda.ts",
8321
- "line": 141
8505
+ "line": 142
8322
8506
  },
8323
8507
  "name": "LINUX_ARM64_DOCKERFILE_PATH",
8324
8508
  "static": true,
@@ -8336,7 +8520,7 @@
8336
8520
  "immutable": true,
8337
8521
  "locationInModule": {
8338
8522
  "filename": "src/providers/lambda.ts",
8339
- "line": 132
8523
+ "line": 133
8340
8524
  },
8341
8525
  "name": "LINUX_X64_DOCKERFILE_PATH",
8342
8526
  "static": true,
@@ -8352,7 +8536,7 @@
8352
8536
  "immutable": true,
8353
8537
  "locationInModule": {
8354
8538
  "filename": "src/providers/lambda.ts",
8355
- "line": 243
8539
+ "line": 244
8356
8540
  },
8357
8541
  "name": "connections",
8358
8542
  "overrides": "aws-cdk-lib.aws_ec2.IConnectable",
@@ -8368,7 +8552,7 @@
8368
8552
  "immutable": true,
8369
8553
  "locationInModule": {
8370
8554
  "filename": "src/providers/lambda.ts",
8371
- "line": 146
8555
+ "line": 147
8372
8556
  },
8373
8557
  "name": "function",
8374
8558
  "type": {
@@ -8383,7 +8567,7 @@
8383
8567
  "immutable": true,
8384
8568
  "locationInModule": {
8385
8569
  "filename": "src/providers/lambda.ts",
8386
- "line": 156
8570
+ "line": 157
8387
8571
  },
8388
8572
  "name": "grantPrincipal",
8389
8573
  "overrides": "aws-cdk-lib.aws_iam.IGrantable",
@@ -8400,7 +8584,7 @@
8400
8584
  "immutable": true,
8401
8585
  "locationInModule": {
8402
8586
  "filename": "src/providers/lambda.ts",
8403
- "line": 161
8587
+ "line": 162
8404
8588
  },
8405
8589
  "name": "image",
8406
8590
  "type": {
@@ -8415,7 +8599,7 @@
8415
8599
  "immutable": true,
8416
8600
  "locationInModule": {
8417
8601
  "filename": "src/providers/lambda.ts",
8418
- "line": 151
8602
+ "line": 152
8419
8603
  },
8420
8604
  "name": "labels",
8421
8605
  "overrides": "@cloudsnorkel/cdk-github-runners.IRunnerProvider",
@@ -8437,7 +8621,7 @@
8437
8621
  "immutable": true,
8438
8622
  "locationInModule": {
8439
8623
  "filename": "src/providers/lambda.ts",
8440
- "line": 168
8624
+ "line": 169
8441
8625
  },
8442
8626
  "name": "logGroup",
8443
8627
  "overrides": "@cloudsnorkel/cdk-github-runners.IRunnerProvider",
@@ -8446,24 +8630,24 @@
8446
8630
  }
8447
8631
  }
8448
8632
  ],
8449
- "symbolId": "src/providers/lambda:LambdaRunner"
8633
+ "symbolId": "src/providers/lambda:LambdaRunnerProvider"
8450
8634
  },
8451
- "@cloudsnorkel/cdk-github-runners.LambdaRunnerProps": {
8635
+ "@cloudsnorkel/cdk-github-runners.LambdaRunnerProviderProps": {
8452
8636
  "assembly": "@cloudsnorkel/cdk-github-runners",
8453
8637
  "datatype": true,
8454
8638
  "docs": {
8455
8639
  "stability": "experimental"
8456
8640
  },
8457
- "fqn": "@cloudsnorkel/cdk-github-runners.LambdaRunnerProps",
8641
+ "fqn": "@cloudsnorkel/cdk-github-runners.LambdaRunnerProviderProps",
8458
8642
  "interfaces": [
8459
8643
  "@cloudsnorkel/cdk-github-runners.RunnerProviderProps"
8460
8644
  ],
8461
8645
  "kind": "interface",
8462
8646
  "locationInModule": {
8463
8647
  "filename": "src/providers/lambda.ts",
8464
- "line": 30
8648
+ "line": 31
8465
8649
  },
8466
- "name": "LambdaRunnerProps",
8650
+ "name": "LambdaRunnerProviderProps",
8467
8651
  "properties": [
8468
8652
  {
8469
8653
  "abstract": true,
@@ -8475,7 +8659,7 @@
8475
8659
  "immutable": true,
8476
8660
  "locationInModule": {
8477
8661
  "filename": "src/providers/lambda.ts",
8478
- "line": 75
8662
+ "line": 76
8479
8663
  },
8480
8664
  "name": "ephemeralStorageSize",
8481
8665
  "optional": true,
@@ -8495,7 +8679,7 @@
8495
8679
  "immutable": true,
8496
8680
  "locationInModule": {
8497
8681
  "filename": "src/providers/lambda.ts",
8498
- "line": 39
8682
+ "line": 40
8499
8683
  },
8500
8684
  "name": "imageBuilder",
8501
8685
  "optional": true,
@@ -8514,7 +8698,7 @@
8514
8698
  "immutable": true,
8515
8699
  "locationInModule": {
8516
8700
  "filename": "src/providers/lambda.ts",
8517
- "line": 47
8701
+ "line": 48
8518
8702
  },
8519
8703
  "name": "label",
8520
8704
  "optional": true,
@@ -8533,7 +8717,7 @@
8533
8717
  "immutable": true,
8534
8718
  "locationInModule": {
8535
8719
  "filename": "src/providers/lambda.ts",
8536
- "line": 58
8720
+ "line": 59
8537
8721
  },
8538
8722
  "name": "labels",
8539
8723
  "optional": true,
@@ -8557,7 +8741,7 @@
8557
8741
  "immutable": true,
8558
8742
  "locationInModule": {
8559
8743
  "filename": "src/providers/lambda.ts",
8560
- "line": 68
8744
+ "line": 69
8561
8745
  },
8562
8746
  "name": "memorySize",
8563
8747
  "optional": true,
@@ -8576,7 +8760,7 @@
8576
8760
  "immutable": true,
8577
8761
  "locationInModule": {
8578
8762
  "filename": "src/providers/lambda.ts",
8579
- "line": 100
8763
+ "line": 101
8580
8764
  },
8581
8765
  "name": "securityGroup",
8582
8766
  "optional": true,
@@ -8594,7 +8778,7 @@
8594
8778
  "immutable": true,
8595
8779
  "locationInModule": {
8596
8780
  "filename": "src/providers/lambda.ts",
8597
- "line": 107
8781
+ "line": 108
8598
8782
  },
8599
8783
  "name": "securityGroups",
8600
8784
  "optional": true,
@@ -8617,7 +8801,7 @@
8617
8801
  "immutable": true,
8618
8802
  "locationInModule": {
8619
8803
  "filename": "src/providers/lambda.ts",
8620
- "line": 114
8804
+ "line": 115
8621
8805
  },
8622
8806
  "name": "subnetSelection",
8623
8807
  "optional": true,
@@ -8636,7 +8820,7 @@
8636
8820
  "immutable": true,
8637
8821
  "locationInModule": {
8638
8822
  "filename": "src/providers/lambda.ts",
8639
- "line": 84
8823
+ "line": 85
8640
8824
  },
8641
8825
  "name": "timeout",
8642
8826
  "optional": true,
@@ -8654,7 +8838,7 @@
8654
8838
  "immutable": true,
8655
8839
  "locationInModule": {
8656
8840
  "filename": "src/providers/lambda.ts",
8657
- "line": 91
8841
+ "line": 92
8658
8842
  },
8659
8843
  "name": "vpc",
8660
8844
  "optional": true,
@@ -8663,7 +8847,7 @@
8663
8847
  }
8664
8848
  }
8665
8849
  ],
8666
- "symbolId": "src/providers/lambda:LambdaRunnerProps"
8850
+ "symbolId": "src/providers/lambda:LambdaRunnerProviderProps"
8667
8851
  },
8668
8852
  "@cloudsnorkel/cdk-github-runners.LinuxUbuntuComponents": {
8669
8853
  "assembly": "@cloudsnorkel/cdk-github-runners",
@@ -8993,7 +9177,7 @@
8993
9177
  "kind": "interface",
8994
9178
  "locationInModule": {
8995
9179
  "filename": "src/runner.ts",
8996
- "line": 101
9180
+ "line": 104
8997
9181
  },
8998
9182
  "name": "LogOptions",
8999
9183
  "properties": [
@@ -9007,7 +9191,7 @@
9007
9191
  "immutable": true,
9008
9192
  "locationInModule": {
9009
9193
  "filename": "src/runner.ts",
9010
- "line": 112
9194
+ "line": 115
9011
9195
  },
9012
9196
  "name": "includeExecutionData",
9013
9197
  "optional": true,
@@ -9025,7 +9209,7 @@
9025
9209
  "immutable": true,
9026
9210
  "locationInModule": {
9027
9211
  "filename": "src/runner.ts",
9028
- "line": 119
9212
+ "line": 122
9029
9213
  },
9030
9214
  "name": "level",
9031
9215
  "optional": true,
@@ -9042,7 +9226,7 @@
9042
9226
  "immutable": true,
9043
9227
  "locationInModule": {
9044
9228
  "filename": "src/runner.ts",
9045
- "line": 105
9229
+ "line": 108
9046
9230
  },
9047
9231
  "name": "logGroupName",
9048
9232
  "optional": true,
@@ -9061,7 +9245,7 @@
9061
9245
  "immutable": true,
9062
9246
  "locationInModule": {
9063
9247
  "filename": "src/runner.ts",
9064
- "line": 128
9248
+ "line": 131
9065
9249
  },
9066
9250
  "name": "logRetention",
9067
9251
  "optional": true,
@@ -10277,6 +10461,6 @@
10277
10461
  "symbolId": "src/providers/image-builders/windows-components:WindowsComponents"
10278
10462
  }
10279
10463
  },
10280
- "version": "0.8.1",
10281
- "fingerprint": "ynEXSWyCd8lcrUwSjKuri9ZGDYfYVq0WuBJhjtMhnzI="
10464
+ "version": "0.8.2",
10465
+ "fingerprint": "bNthPy5heboN527fQeALrmO+UpHzBXMira4OVkTf/ec="
10282
10466
  }