Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release #2144

Merged
merged 32 commits into from
Jun 10, 2022
Merged

Release #2144

Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
32 commits
Select commit Hold shift + click to select a range
68a2014
feat: Support Node16 for AWS Lambda (#2073)
npalm May 23, 2022
dd77819
chore: Bump aws-sdk in /modules/runners/lambdas/runners (#2118)
dependabot[bot] Jun 9, 2022
3dec230
chore: Bump aws-sdk in /modules/webhook/lambdas/webhook (#2117)
dependabot[bot] Jun 9, 2022
7b6a99a
chore: Bump @vercel/ncc in /modules/webhook/lambdas/webhook (#2086)
dependabot[bot] Jun 9, 2022
93e352b
chore: Bump @vercel/ncc (#2089)
dependabot[bot] Jun 9, 2022
b290a07
chore: Bump @aws-sdk/client-ssm in /modules/webhook/lambdas/webhook (…
dependabot[bot] Jun 9, 2022
8f870a7
chore: Bump @aws-sdk/client-ssm in /modules/runners/lambdas/runners (…
dependabot[bot] Jun 9, 2022
3a4dd37
chore: Bump aws-sdk (#2128)
dependabot[bot] Jun 9, 2022
3d9369d
chore: Bump typescript in /modules/webhook/lambdas/webhook (#2111)
dependabot[bot] Jun 9, 2022
90fa858
chore: Bump typescript (#2112)
dependabot[bot] Jun 9, 2022
9b05026
chore: Bump jest-mock in /modules/webhook/lambdas/webhook (#2135)
dependabot[bot] Jun 9, 2022
4537cce
chore: Bump nock in /modules/runners/lambdas/runners (#2134)
dependabot[bot] Jun 9, 2022
cb92490
chore: Bump @vercel/ncc in /modules/runners/lambdas/runners (#2124)
dependabot[bot] Jun 9, 2022
3a35b33
chore: Bump ts-node-dev in /modules/webhook/lambdas/webhook (#2132)
dependabot[bot] Jun 9, 2022
d67f627
chore: Bump aws-sdk in /modules/webhook/lambdas/webhook (#2138)
dependabot[bot] Jun 9, 2022
a3d20e7
chore: Bump ts-node-dev in /modules/runners/lambdas/runners (#2137)
dependabot[bot] Jun 9, 2022
2a60449
chore: Bump nock in /modules/webhook/lambdas/webhook (#2133)
dependabot[bot] Jun 9, 2022
7165d9d
chore: Bump @types/aws-lambda in /modules/webhook/lambdas/webhook (#2…
dependabot[bot] Jun 9, 2022
cee7f9c
chore: Bump aws-sdk in /modules/runners/lambdas/runners (#2140)
dependabot[bot] Jun 9, 2022
02c17e6
chore: Bump @types/node (#2129)
dependabot[bot] Jun 9, 2022
4387efa
chore: Bump @octokit/webhooks in /modules/webhook/lambdas/webhook (#2…
dependabot[bot] Jun 9, 2022
f1d1d8e
chore: Bump jest-mock in /modules/runners/lambdas/runners (#2141)
dependabot[bot] Jun 9, 2022
1bde8cf
chore: Bump npm from 8.9.0 to 8.12.0 in /.release (#2106)
dependabot[bot] Jun 9, 2022
30580aa
chore: Bump semver-regex from 3.1.3 to 3.1.4 in /.release (#2108)
dependabot[bot] Jun 9, 2022
49ef2f7
chore: Bump @types/aws-lambda in /modules/runners/lambdas/runners (#2…
dependabot[bot] Jun 9, 2022
5a1bd6d
chore: Bump @types/node in /modules/webhook/lambdas/webhook (#2127)
dependabot[bot] Jun 9, 2022
a0e5cf1
chore: Bump conventional-changelog-conventionalcommits in /.release (…
dependabot[bot] Jun 9, 2022
aa25917
chore: Bump ts-node-dev (#2093)
dependabot[bot] Jun 9, 2022
7019818
chore: Bump @types/node in /modules/runners/lambdas/runners (#2126)
dependabot[bot] Jun 9, 2022
e061623
chore: Bump typescript in /modules/runners/lambdas/runners (#2113)
dependabot[bot] Jun 9, 2022
56b2c3a
chore: Bump semantic-release from 19.0.2 to 19.0.3 in /.release (#2142)
dependabot[bot] Jun 10, 2022
9e2a7b6
feat: Support arm64 lambda functions (#2121)
dylanmtaylor Jun 10, 2022
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion .github/workflows/lambda-runner-binaries-syncer.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,11 @@ on:
jobs:
build:
runs-on: ubuntu-latest
container: node:14
strategy:
matrix:
node: [14, 16]
container:
image: node:${{ matrix.node }}
defaults:
run:
working-directory: modules/runner-binaries-syncer/lambdas/runner-binaries-syncer
Expand Down
6 changes: 5 additions & 1 deletion .github/workflows/lambda-runners.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,11 @@ on:
jobs:
build:
runs-on: ubuntu-latest
container: node:14
strategy:
matrix:
node: [14, 16]
container:
image: node:${{ matrix.node }}
defaults:
run:
working-directory: modules/runners/lambdas/runners
Expand Down
6 changes: 5 additions & 1 deletion .github/workflows/lambda-webhook.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,11 @@ on:
jobs:
build:
runs-on: ubuntu-latest
container: node:14
strategy:
matrix:
node: [14, 16]
container:
image: node:${{ matrix.node }}
defaults:
run:
working-directory: modules/webhook/lambdas/webhook
Expand Down
4 changes: 2 additions & 2 deletions .release/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^8.0.2",
"@semantic-release/release-notes-generator": "^10.0.3",
"conventional-changelog-conventionalcommits": "^4.6.3",
"semantic-release": "^19.0.2"
"conventional-changelog-conventionalcommits": "^5.0.0",
"semantic-release": "^19.0.3"
}
}
Loading