Skip to content

Commit 93fbea2

Browse files
committed
Merge branch 'release/v0.6.0' into master
2 parents d1ae594 + 304bd50 commit 93fbea2

File tree

16 files changed

+636
-463
lines changed

16 files changed

+636
-463
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
name: Auto approve dependabot
2+
on: pull_request
3+
4+
jobs:
5+
build:
6+
runs-on: ubuntu-latest
7+
steps:
8+
- uses: hmarr/[email protected]
9+
if: github.actor == 'dependabot[bot]' || github.actor == 'dependabot-preview[bot]'
10+
with:
11+
github-token: "${{ secrets.GITHUB_TOKEN }}"

CHANGELOG.md

+13-1
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

+5-5
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

+3-3
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

+3-3
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

+3-3
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
}

modules/runner-binaries-syncer/lambdas/runner-binaries-syncer/package.json

+10-10
Original file line numberDiff line numberDiff line change
@@ -13,19 +13,19 @@
1313
"dist": "yarn build && cd dist && zip ../runner-binaries-syncer.zip index.js"
1414
},
1515
"devDependencies": {
16-
"@octokit/rest": "^18.0.3",
17-
"@types/jest": "^26.0.9",
18-
"@types/node": "^14.6.0",
16+
"@octokit/rest": "^18.0.6",
17+
"@types/jest": "^26.0.13",
18+
"@types/node": "^14.10.1",
1919
"@types/request": "^2.48.4",
20-
"@typescript-eslint/eslint-plugin": "^3.10.0",
21-
"@typescript-eslint/parser": "^3.9.0",
20+
"@typescript-eslint/eslint-plugin": "^4.0.0",
21+
"@typescript-eslint/parser": "^3.10.1",
2222
"@zeit/ncc": "^0.22.1",
23-
"aws-sdk": "^2.739.0",
24-
"eslint": "^6.8.0",
23+
"aws-sdk": "^2.767.0",
24+
"eslint": "^7.10.0",
2525
"jest": "^26.4.2",
26-
"ts-jest": "^26.2.0",
27-
"ts-node-dev": "^1.0.0-pre.60",
28-
"typescript": "^3.9.6"
26+
"ts-jest": "^26.4.1",
27+
"ts-node-dev": "^1.0.0-pre.61",
28+
"typescript": "^4.0.3"
2929
},
3030
"dependencies": {
3131
"yn": "^4.0.0"

0 commit comments

Comments
 (0)