Skip to content

Commit 49f0f71

Browse files
authored
Merge branch 'main' into renovate/probot-adapter-aws-lambda-serverless-4.x
2 parents 03aa871 + 3dd0f34 commit 49f0f71

File tree

7 files changed

+1438
-842
lines changed

7 files changed

+1438
-842
lines changed

.github/workflows/deploy.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,10 @@ jobs:
99
name: deploy
1010
runs-on: ubuntu-latest
1111
steps:
12-
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4
12+
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
1313
- uses: actions/setup-node@v4
1414
with:
15-
node-version: 18
15+
node-version: 20
1616
cache: npm
1717
- run: npm ci
1818
- uses: aws-actions/setup-sam@v2

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jobs:
77
release:
88
runs-on: ubuntu-latest
99
steps:
10-
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4
10+
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
1111
- uses: actions/setup-node@v4
1212
with:
1313
node-version: lts/*

.github/workflows/test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,10 @@ jobs:
1111
test:
1212
runs-on: ubuntu-latest
1313
steps:
14-
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4
14+
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
1515
- uses: actions/setup-node@v4
1616
with:
1717
cache: npm
18-
node-version: 18
18+
node-version: 20
1919
- run: npm ci
2020
- run: npm test

app.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
* @param {import('probot').Probot} app
33
*/
44
module.exports = (app) => {
5-
app.log("Yay! The app was loaded!");
5+
console.log("Yay! The app was loaded!");
66

77
app.on("issues.opened", async (context) => {
88
return context.octokit.issues.createComment(

0 commit comments

Comments
 (0)