@cloudsnorkel/cdk-github-runners 0.5.1 → 0.5.3

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 (32) hide show
  1. package/.gitattributes +0 -1
  2. package/.jsii +113 -79
  3. package/API.md +31 -14
  4. package/README.md +48 -12
  5. package/lib/lambdas/aws-image-builder-versioner/index.js +81 -41
  6. package/lib/lambdas/delete-runner/index.js +45 -52
  7. package/lib/lambdas/setup/index.html +13 -13
  8. package/lib/lambdas/setup/index.js +7 -2
  9. package/lib/lambdas/status/index.js +45 -52
  10. package/lib/lambdas/token-retriever/index.js +45 -52
  11. package/lib/lambdas/update-lambda/index.js +25379 -27
  12. package/lib/providers/codebuild.js +7 -5
  13. package/lib/providers/common.js +3 -3
  14. package/lib/providers/docker-images/codebuild/linux-arm64/Dockerfile +2 -0
  15. package/lib/providers/docker-images/codebuild/linux-x64/Dockerfile +2 -0
  16. package/lib/providers/docker-images/fargate/linux-arm64/Dockerfile +1 -0
  17. package/lib/providers/docker-images/fargate/linux-x64/Dockerfile +1 -0
  18. package/lib/providers/docker-images/lambda/linux-arm64/Dockerfile +1 -0
  19. package/lib/providers/docker-images/lambda/linux-arm64/runner.js +1 -0
  20. package/lib/providers/docker-images/lambda/linux-arm64/runner.sh +2 -2
  21. package/lib/providers/docker-images/lambda/linux-x64/Dockerfile +1 -0
  22. package/lib/providers/docker-images/lambda/linux-x64/runner.js +1 -0
  23. package/lib/providers/docker-images/lambda/linux-x64/runner.sh +2 -2
  24. package/lib/providers/fargate.d.ts +12 -12
  25. package/lib/providers/fargate.js +6 -4
  26. package/lib/providers/image-builders/codebuild.js +4 -2
  27. package/lib/providers/image-builders/container.js +7 -4
  28. package/lib/providers/image-builders/static.js +1 -1
  29. package/lib/providers/lambda.js +3 -15
  30. package/lib/runner.js +1 -1
  31. package/lib/secrets.js +1 -1
  32. package/package.json +14 -14
package/.jsii CHANGED
@@ -3010,7 +3010,7 @@
3010
3010
  "stability": "experimental"
3011
3011
  },
3012
3012
  "homepage": "https://github.com/CloudSnorkel/cdk-github-runners.git",
3013
- "jsiiVersion": "1.67.0 (build 2c027f5)",
3013
+ "jsiiVersion": "1.69.0 (build f656c31)",
3014
3014
  "keywords": [
3015
3015
  "aws",
3016
3016
  "aws-cdk",
@@ -3034,7 +3034,7 @@
3034
3034
  },
3035
3035
  "name": "@cloudsnorkel/cdk-github-runners",
3036
3036
  "readme": {
3037
- "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| | CodeBuild | Fargate | Lambda |\n|------------------|----------------------------|----------------|---------------|\n| **Time limit** | 8 hours | Unlimited | 15 minutes |\n| **vCPUs** | 2, 4, 8, or 72 | 0.25 to 4 | 1 to 6 |\n| **RAM** | 3gb, 7gb, 15gb, or 145gb | 512mb to 30gb | 128mb to 10gb |\n| **Storage** | 50gb to 824gb | 20gb to 200gb | Up to 10gb |\n| **Architecture** | 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 |\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: FargateProvider.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 FargateProvider(this, 'fargate runner', {\n label: 'customized-fargate',\n vpc: vpc,\n securityGroup: runnerSg,\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\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. 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\n3. When using GitHub app, make sure there are active installation in `github.auth.app.installations`\n4. 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-runner-controller/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-runner-controller/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"
3037
+ "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| | CodeBuild | Fargate | Lambda |\n|------------------|----------------------------|----------------|---------------|\n| **Time limit** | 8 hours | Unlimited | 15 minutes |\n| **vCPUs** | 2, 4, 8, or 72 | 0.25 to 4 | 1 to 6 |\n| **RAM** | 3gb, 7gb, 15gb, or 145gb | 512mb to 30gb | 128mb to 10gb |\n| **Storage** | 50gb to 824gb | 20gb to 200gb | Up to 10gb |\n| **Architecture** | 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 |\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. 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\n3. When using GitHub app, make sure there are active installation in `github.auth.app.installations`\n4. 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-runner-controller/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-runner-controller/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"
3038
3038
  },
3039
3039
  "repository": {
3040
3040
  "type": "git",
@@ -3688,7 +3688,7 @@
3688
3688
  },
3689
3689
  "locationInModule": {
3690
3690
  "filename": "src/providers/codebuild.ts",
3691
- "line": 249
3691
+ "line": 251
3692
3692
  },
3693
3693
  "name": "getStepFunctionTask",
3694
3694
  "overrides": "@cloudsnorkel/cdk-github-runners.IRunnerProvider",
@@ -3756,7 +3756,7 @@
3756
3756
  "immutable": true,
3757
3757
  "locationInModule": {
3758
3758
  "filename": "src/providers/codebuild.ts",
3759
- "line": 289
3759
+ "line": 291
3760
3760
  },
3761
3761
  "name": "connections",
3762
3762
  "overrides": "aws-cdk-lib.aws_ec2.IConnectable",
@@ -4028,7 +4028,7 @@
4028
4028
  },
4029
4029
  "locationInModule": {
4030
4030
  "filename": "src/providers/image-builders/container.ts",
4031
- "line": 422
4031
+ "line": 437
4032
4032
  },
4033
4033
  "parameters": [
4034
4034
  {
@@ -4058,7 +4058,7 @@
4058
4058
  "kind": "class",
4059
4059
  "locationInModule": {
4060
4060
  "filename": "src/providers/image-builders/container.ts",
4061
- "line": 402
4061
+ "line": 417
4062
4062
  },
4063
4063
  "methods": [
4064
4064
  {
@@ -4068,7 +4068,7 @@
4068
4068
  },
4069
4069
  "locationInModule": {
4070
4070
  "filename": "src/providers/image-builders/container.ts",
4071
- "line": 564
4071
+ "line": 579
4072
4072
  },
4073
4073
  "name": "addComponent",
4074
4074
  "parameters": [
@@ -4088,7 +4088,7 @@
4088
4088
  },
4089
4089
  "locationInModule": {
4090
4090
  "filename": "src/providers/image-builders/container.ts",
4091
- "line": 581
4091
+ "line": 596
4092
4092
  },
4093
4093
  "name": "addExtraCertificates",
4094
4094
  "parameters": [
@@ -4110,7 +4110,7 @@
4110
4110
  },
4111
4111
  "locationInModule": {
4112
4112
  "filename": "src/providers/image-builders/container.ts",
4113
- "line": 602
4113
+ "line": 617
4114
4114
  },
4115
4115
  "name": "bind",
4116
4116
  "overrides": "@cloudsnorkel/cdk-github-runners.IImageBuilder",
@@ -4128,7 +4128,7 @@
4128
4128
  },
4129
4129
  "locationInModule": {
4130
4130
  "filename": "src/providers/image-builders/container.ts",
4131
- "line": 550
4131
+ "line": 565
4132
4132
  },
4133
4133
  "name": "prependComponent",
4134
4134
  "parameters": [
@@ -4150,7 +4150,7 @@
4150
4150
  "immutable": true,
4151
4151
  "locationInModule": {
4152
4152
  "filename": "src/providers/image-builders/container.ts",
4153
- "line": 403
4153
+ "line": 418
4154
4154
  },
4155
4155
  "name": "architecture",
4156
4156
  "type": {
@@ -4164,7 +4164,7 @@
4164
4164
  "immutable": true,
4165
4165
  "locationInModule": {
4166
4166
  "filename": "src/providers/image-builders/container.ts",
4167
- "line": 407
4167
+ "line": 422
4168
4168
  },
4169
4169
  "name": "description",
4170
4170
  "type": {
@@ -4178,7 +4178,7 @@
4178
4178
  "immutable": true,
4179
4179
  "locationInModule": {
4180
4180
  "filename": "src/providers/image-builders/container.ts",
4181
- "line": 417
4181
+ "line": 432
4182
4182
  },
4183
4183
  "name": "instanceTypes",
4184
4184
  "type": {
@@ -4197,7 +4197,7 @@
4197
4197
  "immutable": true,
4198
4198
  "locationInModule": {
4199
4199
  "filename": "src/providers/image-builders/container.ts",
4200
- "line": 420
4200
+ "line": 435
4201
4201
  },
4202
4202
  "name": "logRemovalPolicy",
4203
4203
  "type": {
@@ -4211,7 +4211,7 @@
4211
4211
  "immutable": true,
4212
4212
  "locationInModule": {
4213
4213
  "filename": "src/providers/image-builders/container.ts",
4214
- "line": 419
4214
+ "line": 434
4215
4215
  },
4216
4216
  "name": "logRetention",
4217
4217
  "type": {
@@ -4225,7 +4225,7 @@
4225
4225
  "immutable": true,
4226
4226
  "locationInModule": {
4227
4227
  "filename": "src/providers/image-builders/container.ts",
4228
- "line": 404
4228
+ "line": 419
4229
4229
  },
4230
4230
  "name": "os",
4231
4231
  "type": {
@@ -4239,7 +4239,7 @@
4239
4239
  "immutable": true,
4240
4240
  "locationInModule": {
4241
4241
  "filename": "src/providers/image-builders/container.ts",
4242
- "line": 405
4242
+ "line": 420
4243
4243
  },
4244
4244
  "name": "platform",
4245
4245
  "type": {
@@ -4253,7 +4253,7 @@
4253
4253
  "immutable": true,
4254
4254
  "locationInModule": {
4255
4255
  "filename": "src/providers/image-builders/container.ts",
4256
- "line": 418
4256
+ "line": 433
4257
4257
  },
4258
4258
  "name": "rebuildInterval",
4259
4259
  "type": {
@@ -4267,7 +4267,7 @@
4267
4267
  "immutable": true,
4268
4268
  "locationInModule": {
4269
4269
  "filename": "src/providers/image-builders/container.ts",
4270
- "line": 411
4270
+ "line": 426
4271
4271
  },
4272
4272
  "name": "repository",
4273
4273
  "type": {
@@ -4281,7 +4281,7 @@
4281
4281
  "immutable": true,
4282
4282
  "locationInModule": {
4283
4283
  "filename": "src/providers/image-builders/container.ts",
4284
- "line": 409
4284
+ "line": 424
4285
4285
  },
4286
4286
  "name": "runnerVersion",
4287
4287
  "type": {
@@ -4295,7 +4295,7 @@
4295
4295
  "immutable": true,
4296
4296
  "locationInModule": {
4297
4297
  "filename": "src/providers/image-builders/container.ts",
4298
- "line": 416
4298
+ "line": 431
4299
4299
  },
4300
4300
  "name": "securityGroupIds",
4301
4301
  "optional": true,
@@ -4315,7 +4315,7 @@
4315
4315
  "immutable": true,
4316
4316
  "locationInModule": {
4317
4317
  "filename": "src/providers/image-builders/container.ts",
4318
- "line": 415
4318
+ "line": 430
4319
4319
  },
4320
4320
  "name": "subnetId",
4321
4321
  "optional": true,
@@ -4337,7 +4337,7 @@
4337
4337
  "kind": "interface",
4338
4338
  "locationInModule": {
4339
4339
  "filename": "src/providers/image-builders/container.ts",
4340
- "line": 27
4340
+ "line": 28
4341
4341
  },
4342
4342
  "name": "ContainerImageBuilderProps",
4343
4343
  "properties": [
@@ -4351,7 +4351,7 @@
4351
4351
  "immutable": true,
4352
4352
  "locationInModule": {
4353
4353
  "filename": "src/providers/image-builders/container.ts",
4354
- "line": 33
4354
+ "line": 34
4355
4355
  },
4356
4356
  "name": "architecture",
4357
4357
  "optional": true,
@@ -4369,7 +4369,7 @@
4369
4369
  "immutable": true,
4370
4370
  "locationInModule": {
4371
4371
  "filename": "src/providers/image-builders/container.ts",
4372
- "line": 84
4372
+ "line": 85
4373
4373
  },
4374
4374
  "name": "instanceType",
4375
4375
  "optional": true,
@@ -4388,7 +4388,7 @@
4388
4388
  "immutable": true,
4389
4389
  "locationInModule": {
4390
4390
  "filename": "src/providers/image-builders/container.ts",
4391
- "line": 102
4391
+ "line": 103
4392
4392
  },
4393
4393
  "name": "logRemovalPolicy",
4394
4394
  "optional": true,
@@ -4407,7 +4407,7 @@
4407
4407
  "immutable": true,
4408
4408
  "locationInModule": {
4409
4409
  "filename": "src/providers/image-builders/container.ts",
4410
- "line": 93
4410
+ "line": 94
4411
4411
  },
4412
4412
  "name": "logRetention",
4413
4413
  "optional": true,
@@ -4425,7 +4425,7 @@
4425
4425
  "immutable": true,
4426
4426
  "locationInModule": {
4427
4427
  "filename": "src/providers/image-builders/container.ts",
4428
- "line": 40
4428
+ "line": 41
4429
4429
  },
4430
4430
  "name": "os",
4431
4431
  "optional": true,
@@ -4444,7 +4444,7 @@
4444
4444
  "immutable": true,
4445
4445
  "locationInModule": {
4446
4446
  "filename": "src/providers/image-builders/container.ts",
4447
- "line": 56
4447
+ "line": 57
4448
4448
  },
4449
4449
  "name": "rebuildInterval",
4450
4450
  "optional": true,
@@ -4462,7 +4462,7 @@
4462
4462
  "immutable": true,
4463
4463
  "locationInModule": {
4464
4464
  "filename": "src/providers/image-builders/container.ts",
4465
- "line": 47
4465
+ "line": 48
4466
4466
  },
4467
4467
  "name": "runnerVersion",
4468
4468
  "optional": true,
@@ -4480,7 +4480,7 @@
4480
4480
  "immutable": true,
4481
4481
  "locationInModule": {
4482
4482
  "filename": "src/providers/image-builders/container.ts",
4483
- "line": 70
4483
+ "line": 71
4484
4484
  },
4485
4485
  "name": "securityGroup",
4486
4486
  "optional": true,
@@ -4498,7 +4498,7 @@
4498
4498
  "immutable": true,
4499
4499
  "locationInModule": {
4500
4500
  "filename": "src/providers/image-builders/container.ts",
4501
- "line": 77
4501
+ "line": 78
4502
4502
  },
4503
4503
  "name": "subnetSelection",
4504
4504
  "optional": true,
@@ -4516,7 +4516,7 @@
4516
4516
  "immutable": true,
4517
4517
  "locationInModule": {
4518
4518
  "filename": "src/providers/image-builders/container.ts",
4519
- "line": 63
4519
+ "line": 64
4520
4520
  },
4521
4521
  "name": "vpc",
4522
4522
  "optional": true,
@@ -4542,7 +4542,7 @@
4542
4542
  },
4543
4543
  "locationInModule": {
4544
4544
  "filename": "src/providers/fargate.ts",
4545
- "line": 249
4545
+ "line": 251
4546
4546
  },
4547
4547
  "parameters": [
4548
4548
  {
@@ -4571,7 +4571,7 @@
4571
4571
  "kind": "class",
4572
4572
  "locationInModule": {
4573
4573
  "filename": "src/providers/fargate.ts",
4574
- "line": 175
4574
+ "line": 172
4575
4575
  },
4576
4576
  "methods": [
4577
4577
  {
@@ -4582,7 +4582,7 @@
4582
4582
  },
4583
4583
  "locationInModule": {
4584
4584
  "filename": "src/providers/fargate.ts",
4585
- "line": 331
4585
+ "line": 334
4586
4586
  },
4587
4587
  "name": "getStepFunctionTask",
4588
4588
  "overrides": "@cloudsnorkel/cdk-github-runners.IRunnerProvider",
@@ -4616,7 +4616,7 @@
4616
4616
  "immutable": true,
4617
4617
  "locationInModule": {
4618
4618
  "filename": "src/providers/fargate.ts",
4619
- "line": 192
4619
+ "line": 189
4620
4620
  },
4621
4621
  "name": "LINUX_ARM64_DOCKERFILE_PATH",
4622
4622
  "static": true,
@@ -4634,7 +4634,7 @@
4634
4634
  "immutable": true,
4635
4635
  "locationInModule": {
4636
4636
  "filename": "src/providers/fargate.ts",
4637
- "line": 183
4637
+ "line": 180
4638
4638
  },
4639
4639
  "name": "LINUX_X64_DOCKERFILE_PATH",
4640
4640
  "static": true,
@@ -4645,12 +4645,12 @@
4645
4645
  {
4646
4646
  "docs": {
4647
4647
  "stability": "experimental",
4648
- "summary": "Whether task will have a public IP."
4648
+ "summary": "Whether runner task will have a public IP."
4649
4649
  },
4650
4650
  "immutable": true,
4651
4651
  "locationInModule": {
4652
4652
  "filename": "src/providers/fargate.ts",
4653
- "line": 227
4653
+ "line": 229
4654
4654
  },
4655
4655
  "name": "assignPublicIp",
4656
4656
  "type": {
@@ -4665,7 +4665,7 @@
4665
4665
  "immutable": true,
4666
4666
  "locationInModule": {
4667
4667
  "filename": "src/providers/fargate.ts",
4668
- "line": 197
4668
+ "line": 194
4669
4669
  },
4670
4670
  "name": "cluster",
4671
4671
  "type": {
@@ -4680,7 +4680,7 @@
4680
4680
  "immutable": true,
4681
4681
  "locationInModule": {
4682
4682
  "filename": "src/providers/fargate.ts",
4683
- "line": 237
4683
+ "line": 239
4684
4684
  },
4685
4685
  "name": "connections",
4686
4686
  "overrides": "aws-cdk-lib.aws_ec2.IConnectable",
@@ -4696,7 +4696,7 @@
4696
4696
  "immutable": true,
4697
4697
  "locationInModule": {
4698
4698
  "filename": "src/providers/fargate.ts",
4699
- "line": 207
4699
+ "line": 204
4700
4700
  },
4701
4701
  "name": "container",
4702
4702
  "type": {
@@ -4711,7 +4711,7 @@
4711
4711
  "immutable": true,
4712
4712
  "locationInModule": {
4713
4713
  "filename": "src/providers/fargate.ts",
4714
- "line": 232
4714
+ "line": 234
4715
4715
  },
4716
4716
  "name": "grantPrincipal",
4717
4717
  "overrides": "aws-cdk-lib.aws_iam.IGrantable",
@@ -4727,7 +4727,7 @@
4727
4727
  "immutable": true,
4728
4728
  "locationInModule": {
4729
4729
  "filename": "src/providers/fargate.ts",
4730
- "line": 247
4730
+ "line": 249
4731
4731
  },
4732
4732
  "name": "image",
4733
4733
  "overrides": "@cloudsnorkel/cdk-github-runners.IRunnerProvider",
@@ -4743,7 +4743,7 @@
4743
4743
  "immutable": true,
4744
4744
  "locationInModule": {
4745
4745
  "filename": "src/providers/fargate.ts",
4746
- "line": 212
4746
+ "line": 209
4747
4747
  },
4748
4748
  "name": "label",
4749
4749
  "overrides": "@cloudsnorkel/cdk-github-runners.IRunnerProvider",
@@ -4759,7 +4759,7 @@
4759
4759
  "immutable": true,
4760
4760
  "locationInModule": {
4761
4761
  "filename": "src/providers/fargate.ts",
4762
- "line": 242
4762
+ "line": 244
4763
4763
  },
4764
4764
  "name": "spot",
4765
4765
  "type": {
@@ -4774,7 +4774,7 @@
4774
4774
  "immutable": true,
4775
4775
  "locationInModule": {
4776
4776
  "filename": "src/providers/fargate.ts",
4777
- "line": 202
4777
+ "line": 199
4778
4778
  },
4779
4779
  "name": "task",
4780
4780
  "type": {
@@ -4789,7 +4789,7 @@
4789
4789
  "immutable": true,
4790
4790
  "locationInModule": {
4791
4791
  "filename": "src/providers/fargate.ts",
4792
- "line": 222
4792
+ "line": 224
4793
4793
  },
4794
4794
  "name": "securityGroup",
4795
4795
  "optional": true,
@@ -4801,12 +4801,28 @@
4801
4801
  {
4802
4802
  "docs": {
4803
4803
  "stability": "experimental",
4804
- "summary": "VPC used for hosting the task."
4804
+ "summary": "Subnets used for hosting the runner task."
4805
+ },
4806
+ "immutable": true,
4807
+ "locationInModule": {
4808
+ "filename": "src/providers/fargate.ts",
4809
+ "line": 219
4810
+ },
4811
+ "name": "subnetSelection",
4812
+ "optional": true,
4813
+ "type": {
4814
+ "fqn": "aws-cdk-lib.aws_ec2.SubnetSelection"
4815
+ }
4816
+ },
4817
+ {
4818
+ "docs": {
4819
+ "stability": "experimental",
4820
+ "summary": "VPC used for hosting the runner task."
4805
4821
  },
4806
4822
  "immutable": true,
4807
4823
  "locationInModule": {
4808
4824
  "filename": "src/providers/fargate.ts",
4809
- "line": 217
4825
+ "line": 214
4810
4826
  },
4811
4827
  "name": "vpc",
4812
4828
  "optional": true,
@@ -4847,7 +4863,7 @@
4847
4863
  "immutable": true,
4848
4864
  "locationInModule": {
4849
4865
  "filename": "src/providers/fargate.ts",
4850
- "line": 73
4866
+ "line": 70
4851
4867
  },
4852
4868
  "name": "assignPublicIp",
4853
4869
  "optional": true,
@@ -4865,7 +4881,7 @@
4865
4881
  "immutable": true,
4866
4882
  "locationInModule": {
4867
4883
  "filename": "src/providers/fargate.ts",
4868
- "line": 64
4884
+ "line": 61
4869
4885
  },
4870
4886
  "name": "cluster",
4871
4887
  "optional": true,
@@ -4884,7 +4900,7 @@
4884
4900
  "immutable": true,
4885
4901
  "locationInModule": {
4886
4902
  "filename": "src/providers/fargate.ts",
4887
- "line": 92
4903
+ "line": 89
4888
4904
  },
4889
4905
  "name": "cpu",
4890
4906
  "optional": true,
@@ -4903,7 +4919,7 @@
4903
4919
  "immutable": true,
4904
4920
  "locationInModule": {
4905
4921
  "filename": "src/providers/fargate.ts",
4906
- "line": 119
4922
+ "line": 116
4907
4923
  },
4908
4924
  "name": "ephemeralStorageGiB",
4909
4925
  "optional": true,
@@ -4915,14 +4931,14 @@
4915
4931
  "abstract": true,
4916
4932
  "docs": {
4917
4933
  "default": "image builder with `FargateRunner.LINUX_X64_DOCKERFILE_PATH` as Dockerfile",
4918
- "remarks": "A user named `runner` is expected to exist.\n\nThe entry point should start GitHub runner. For example:\n\n```\n#!/bin/bash\nset -e -u -o pipefail\n\n/home/runner/config.sh --unattended --url \"https://${GITHUB_DOMAIN}/${OWNER}/${REPO}\" --token \"${RUNNER_TOKEN}\" --ephemeral --work _work --labels \"${RUNNER_LABEL}\" --disableupdate --name \"${RUNNER_NAME}\"\n/home/runner/run.sh\n```",
4934
+ "remarks": "A user named `runner` is expected to exist.",
4919
4935
  "stability": "experimental",
4920
4936
  "summary": "Provider running an image to run inside CodeBuild with GitHub runner pre-configured."
4921
4937
  },
4922
4938
  "immutable": true,
4923
4939
  "locationInModule": {
4924
4940
  "filename": "src/providers/fargate.ts",
4925
- "line": 36
4941
+ "line": 26
4926
4942
  },
4927
4943
  "name": "imageBuilder",
4928
4944
  "optional": true,
@@ -4940,7 +4956,7 @@
4940
4956
  "immutable": true,
4941
4957
  "locationInModule": {
4942
4958
  "filename": "src/providers/fargate.ts",
4943
- "line": 43
4959
+ "line": 33
4944
4960
  },
4945
4961
  "name": "label",
4946
4962
  "optional": true,
@@ -4959,7 +4975,7 @@
4959
4975
  "immutable": true,
4960
4976
  "locationInModule": {
4961
4977
  "filename": "src/providers/fargate.ts",
4962
- "line": 110
4978
+ "line": 107
4963
4979
  },
4964
4980
  "name": "memoryLimitMiB",
4965
4981
  "optional": true,
@@ -4977,7 +4993,7 @@
4977
4993
  "immutable": true,
4978
4994
  "locationInModule": {
4979
4995
  "filename": "src/providers/fargate.ts",
4980
- "line": 57
4996
+ "line": 54
4981
4997
  },
4982
4998
  "name": "securityGroup",
4983
4999
  "optional": true,
@@ -4996,7 +5012,7 @@
4996
5012
  "immutable": true,
4997
5013
  "locationInModule": {
4998
5014
  "filename": "src/providers/fargate.ts",
4999
- "line": 129
5015
+ "line": 126
5000
5016
  },
5001
5017
  "name": "spot",
5002
5018
  "optional": true,
@@ -5004,6 +5020,24 @@
5004
5020
  "primitive": "boolean"
5005
5021
  }
5006
5022
  },
5023
+ {
5024
+ "abstract": true,
5025
+ "docs": {
5026
+ "default": "Fargate default",
5027
+ "stability": "experimental",
5028
+ "summary": "Subnets to run the runners in."
5029
+ },
5030
+ "immutable": true,
5031
+ "locationInModule": {
5032
+ "filename": "src/providers/fargate.ts",
5033
+ "line": 47
5034
+ },
5035
+ "name": "subnetSelection",
5036
+ "optional": true,
5037
+ "type": {
5038
+ "fqn": "aws-cdk-lib.aws_ec2.SubnetSelection"
5039
+ }
5040
+ },
5007
5041
  {
5008
5042
  "abstract": true,
5009
5043
  "docs": {
@@ -5014,7 +5048,7 @@
5014
5048
  "immutable": true,
5015
5049
  "locationInModule": {
5016
5050
  "filename": "src/providers/fargate.ts",
5017
- "line": 50
5051
+ "line": 40
5018
5052
  },
5019
5053
  "name": "vpc",
5020
5054
  "optional": true,
@@ -5478,7 +5512,7 @@
5478
5512
  "kind": "interface",
5479
5513
  "locationInModule": {
5480
5514
  "filename": "src/providers/image-builders/container.ts",
5481
- "line": 147
5515
+ "line": 148
5482
5516
  },
5483
5517
  "name": "ImageBuilderAsset",
5484
5518
  "properties": [
@@ -5491,7 +5525,7 @@
5491
5525
  "immutable": true,
5492
5526
  "locationInModule": {
5493
5527
  "filename": "src/providers/image-builders/container.ts",
5494
- "line": 156
5528
+ "line": 157
5495
5529
  },
5496
5530
  "name": "asset",
5497
5531
  "type": {
@@ -5507,7 +5541,7 @@
5507
5541
  "immutable": true,
5508
5542
  "locationInModule": {
5509
5543
  "filename": "src/providers/image-builders/container.ts",
5510
- "line": 151
5544
+ "line": 152
5511
5545
  },
5512
5546
  "name": "path",
5513
5547
  "type": {
@@ -5532,7 +5566,7 @@
5532
5566
  },
5533
5567
  "locationInModule": {
5534
5568
  "filename": "src/providers/image-builders/container.ts",
5535
- "line": 221
5569
+ "line": 222
5536
5570
  },
5537
5571
  "parameters": [
5538
5572
  {
@@ -5558,7 +5592,7 @@
5558
5592
  "kind": "class",
5559
5593
  "locationInModule": {
5560
5594
  "filename": "src/providers/image-builders/container.ts",
5561
- "line": 208
5595
+ "line": 209
5562
5596
  },
5563
5597
  "methods": [
5564
5598
  {
@@ -5568,7 +5602,7 @@
5568
5602
  },
5569
5603
  "locationInModule": {
5570
5604
  "filename": "src/providers/image-builders/container.ts",
5571
- "line": 313
5605
+ "line": 314
5572
5606
  },
5573
5607
  "name": "grantAssetsRead",
5574
5608
  "parameters": [
@@ -5586,7 +5620,7 @@
5586
5620
  },
5587
5621
  "locationInModule": {
5588
5622
  "filename": "src/providers/image-builders/container.ts",
5589
- "line": 114
5623
+ "line": 115
5590
5624
  },
5591
5625
  "name": "version",
5592
5626
  "parameters": [
@@ -5627,7 +5661,7 @@
5627
5661
  "immutable": true,
5628
5662
  "locationInModule": {
5629
5663
  "filename": "src/providers/image-builders/container.ts",
5630
- "line": 212
5664
+ "line": 213
5631
5665
  },
5632
5666
  "name": "arn",
5633
5667
  "type": {
@@ -5642,7 +5676,7 @@
5642
5676
  "immutable": true,
5643
5677
  "locationInModule": {
5644
5678
  "filename": "src/providers/image-builders/container.ts",
5645
- "line": 217
5679
+ "line": 218
5646
5680
  },
5647
5681
  "name": "platform",
5648
5682
  "type": {
@@ -5663,7 +5697,7 @@
5663
5697
  "kind": "interface",
5664
5698
  "locationInModule": {
5665
5699
  "filename": "src/providers/image-builders/container.ts",
5666
- "line": 162
5700
+ "line": 163
5667
5701
  },
5668
5702
  "name": "ImageBuilderComponentProperties",
5669
5703
  "properties": [
@@ -5677,7 +5711,7 @@
5677
5711
  "immutable": true,
5678
5712
  "locationInModule": {
5679
5713
  "filename": "src/providers/image-builders/container.ts",
5680
- "line": 183
5714
+ "line": 184
5681
5715
  },
5682
5716
  "name": "commands",
5683
5717
  "type": {
@@ -5698,7 +5732,7 @@
5698
5732
  "immutable": true,
5699
5733
  "locationInModule": {
5700
5734
  "filename": "src/providers/image-builders/container.ts",
5701
- "line": 176
5735
+ "line": 177
5702
5736
  },
5703
5737
  "name": "description",
5704
5738
  "type": {
@@ -5714,7 +5748,7 @@
5714
5748
  "immutable": true,
5715
5749
  "locationInModule": {
5716
5750
  "filename": "src/providers/image-builders/container.ts",
5717
- "line": 171
5751
+ "line": 172
5718
5752
  },
5719
5753
  "name": "displayName",
5720
5754
  "type": {
@@ -5731,7 +5765,7 @@
5731
5765
  "immutable": true,
5732
5766
  "locationInModule": {
5733
5767
  "filename": "src/providers/image-builders/container.ts",
5734
- "line": 166
5768
+ "line": 167
5735
5769
  },
5736
5770
  "name": "platform",
5737
5771
  "type": {
@@ -5747,7 +5781,7 @@
5747
5781
  "immutable": true,
5748
5782
  "locationInModule": {
5749
5783
  "filename": "src/providers/image-builders/container.ts",
5750
- "line": 188
5784
+ "line": 189
5751
5785
  },
5752
5786
  "name": "assets",
5753
5787
  "optional": true,
@@ -6836,6 +6870,6 @@
6836
6870
  "symbolId": "src/providers/image-builders/static:StaticRunnerImage"
6837
6871
  }
6838
6872
  },
6839
- "version": "0.5.1",
6840
- "fingerprint": "1NBY5gXCGTKttXe0mKKZVKHHPyiKVFVwnbV4k5tH6uM="
6873
+ "version": "0.5.3",
6874
+ "fingerprint": "KU7AQnH7Klq+n+WLB7qxvop5ji9n6mmFPTMKJb19tu4="
6841
6875
  }