From 6065b29b5070d7830da104d73e75bad00a450968 Mon Sep 17 00:00:00 2001 From: Eric Cornelissen Date: Thu, 22 Sep 2022 18:37:59 +0200 Subject: [PATCH] Bump action runtime to Node.js v16 Following: https://github.blog/changelog/2022-09-22-github-actions-all-actions-will-begin-running-on-node16-instead-of-node12/ --- README.md | 4 ++-- action.yml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 5c30492..acc2c5e 100644 --- a/README.md +++ b/README.md @@ -27,13 +27,13 @@ The body of the git-message, i.e. everything but the first line Without SHA: ```yaml -uses: kceb/git-message-action@v1 +uses: kceb/git-message-action@v2 ``` With specified SHA: ```yaml -uses: kceb/git-message-action@v1 +uses: kceb/git-message-action@v2 with: sha: '2905893ab6e5f2644201c2abc04e3d83bf317d9b' ``` diff --git a/action.yml b/action.yml index 2f41be8..5fe452a 100644 --- a/action.yml +++ b/action.yml @@ -12,7 +12,7 @@ outputs: body: description: 'The body of the git-message, i.e. everything but the first line' runs: - using: 'node12' + using: 'node16' main: 'index.js' branding: icon: 'git-commit'