Skip to content

Commit 304bd50

Browse files
committed
Release 0.6.0
1 parent 93fb9d8 commit 304bd50

File tree

5 files changed

+27
-15
lines changed

5 files changed

+27
-15
lines changed

CHANGELOG.md

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

88
## [Unreleased]
99

10+
## [0.6.0] - 2020-10-10
11+
12+
### Added
13+
14+
- Only allow tagging and termination of runner instances #201 @jpalomaki
15+
16+
### Fixed
17+
18+
- Fix pagination with listing self-hosted runners #202 @HenryNguyen5
19+
20+
1021
## [0.5.0] - 2020-08-25
1122

1223
### Added
@@ -69,7 +80,8 @@ terraform import module.runners.module.webhook.aws_cloudwatch_log_group.webhook
6980

7081
- First release.
7182

72-
[unreleased]: https://github.com/philips-labs/terraform-aws-github-runner/compare/v0.5.0..HEAD
83+
[unreleased]: https://github.com/philips-labs/terraform-aws-github-runner/compare/v0.6.0..HEAD
84+
[0.6.0]: https://github.com/philips-labs/terraform-aws-github-runner/releases/tag/v0.5.0..v0.6.0
7385
[0.5.0]: https://github.com/philips-labs/terraform-aws-github-runner/releases/tag/v0.4.0..v0.5.0
7486
[0.4.0]: https://github.com/philips-labs/terraform-aws-github-runner/releases/tag/v0.3.0..v0.4.0
7587
[0.3.0]: https://github.com/philips-labs/terraform-aws-github-runner/releases/tag/v0.2.0..v0.3.0

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -100,20 +100,20 @@ First you need to download the lambda releases. The lambda code is available as
100100
```terraform
101101
module "lambdas" {
102102
source = "philips-labs/github-runner/aws//modules/download-lambda"
103-
version = "0.5.0"
103+
version = "0.6.0"
104104
105105
lambdas = [
106106
{
107107
name = "webhook"
108-
tag = "v0.5.0"
108+
tag = "v0.6.0"
109109
},
110110
{
111111
name = "runners"
112-
tag = "v0.5.0"
112+
tag = "v0.6.0"
113113
},
114114
{
115115
name = "runner-binaries-syncer"
116-
tag = "v0.5.0"
116+
tag = "v0.6.0"
117117
}
118118
]
119119
}
@@ -132,7 +132,7 @@ Next create a second terraform workspace and initiate the module, see the exampl
132132
```terraform
133133
module "github-runner" {
134134
source = "philips-labs/github-runner/aws"
135-
version = "0.5.0"
135+
version = "0.6.0"
136136
137137
aws_region = "eu-west-1"
138138
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.5.0"
6+
tag = "v0.6.0"
77
},
88
{
99
name = "runners"
10-
tag = "v0.5.0"
10+
tag = "v0.6.0"
1111
},
1212
{
1313
name = "runner-binaries-syncer"
14-
tag = "v0.5.0"
14+
tag = "v0.6.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.5.0"
6+
tag = "v0.6.0"
77
},
88
{
99
name = "runners"
10-
tag = "v0.5.0"
10+
tag = "v0.6.0"
1111
},
1212
{
1313
name = "runner-binaries-syncer"
14-
tag = "v0.5.0"
14+
tag = "v0.6.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.5.0"
13+
tag = "v0.6.0"
1414
},
1515
{
1616
name = "runners"
17-
tag = "v0.5.0"
17+
tag = "v0.6.0"
1818
},
1919
{
2020
name = "runner-binaries-syncer"
21-
tag = "v0.5.0"
21+
tag = "v0.6.0"
2222
}
2323
]
2424
}

0 commit comments

Comments
 (0)