Skip to content

Commit 8f733c2

Browse files
committed
Merge branch 'release/v0.8.0' into develop
2 parents f727a31 + 6e42558 commit 8f733c2

File tree

5 files changed

+18
-11
lines changed

5 files changed

+18
-11
lines changed

CHANGELOG.md

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [0.8.0] - 2020-12-08
11+
12+
### Changed
13+
- Examples upgraded to Terraform 13 (#372)
14+
### Added
15+
- Streaming runner logs to cloudwatch #375
1016

1117
## [0.7.0] - 2020-12-04
1218
### Changed
@@ -90,7 +96,8 @@ terraform import module.runners.module.webhook.aws_cloudwatch_log_group.webhook
9096

9197
- First release.
9298

93-
[unreleased]: https://github.com/philips-labs/terraform-aws-github-runner/compare/v0.7.0..HEAD
99+
[unreleased]: https://github.com/philips-labs/terraform-aws-github-runner/compare/v0.8.0..HEAD
100+
[0.8.0]: https://github.com/philips-labs/terraform-aws-github-runner/releases/tag/v0.7.0..v0.8.0
94101
[0.7.0]: https://github.com/philips-labs/terraform-aws-github-runner/releases/tag/v0.6.0..v0.7.0
95102
[0.6.0]: https://github.com/philips-labs/terraform-aws-github-runner/releases/tag/v0.5.0..v0.6.0
96103
[0.5.0]: https://github.com/philips-labs/terraform-aws-github-runner/releases/tag/v0.4.0..v0.5.0

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ Note that `github_app.key_base64` needs to be the base64-encoded `.pem` file, i.
127127
```terraform
128128
module "github-runner" {
129129
source = "philips-labs/github-runner/aws"
130-
version = "0.7.0"
130+
version = "0.8.0"
131131
132132
aws_region = "eu-west-1"
133133
vpc_id = "vpc-123"

examples/default/lambdas-download/main.tf

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,15 +3,15 @@ module "lambdas" {
33
lambdas = [
44
{
55
name = "webhook"
6-
tag = "v0.7.0"
6+
tag = "v0.8.0"
77
},
88
{
99
name = "runners"
10-
tag = "v0.7.0"
10+
tag = "v0.8.0"
1111
},
1212
{
1313
name = "runner-binaries-syncer"
14-
tag = "v0.7.0"
14+
tag = "v0.8.0"
1515
}
1616
]
1717
}

examples/permissions-boundary/lambdas-download/main.tf

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,15 +3,15 @@ module "lambdas" {
33
lambdas = [
44
{
55
name = "webhook"
6-
tag = "v0.7.0"
6+
tag = "v0.8.0"
77
},
88
{
99
name = "runners"
10-
tag = "v0.7.0"
10+
tag = "v0.8.0"
1111
},
1212
{
1313
name = "runner-binaries-syncer"
14-
tag = "v0.7.0"
14+
tag = "v0.8.0"
1515
}
1616
]
1717
}

modules/download-lambda/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,15 +10,15 @@ module "lambdas" {
1010
lambdas = [
1111
{
1212
name = "webhook"
13-
tag = "v0.7.0"
13+
tag = "v0.8.0"
1414
},
1515
{
1616
name = "runners"
17-
tag = "v0.7.0"
17+
tag = "v0.8.0"
1818
},
1919
{
2020
name = "runner-binaries-syncer"
21-
tag = "v0.7.0"
21+
tag = "v0.8.0"
2222
}
2323
]
2424
}

0 commit comments

Comments
 (0)