This is an automated email from the ASF dual-hosted git repository.
alexstocks pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/dubbo-go-pixiu-samples.git
The following commit(s) were added to refs/heads/main by this push:
new de256c4 Update actions config
new d6dc20b Merge pull request #15 from devenes/patch-1
de256c4 is described below
commit de256c4b136897cb2eded48e4006540ee70d7a01
Author: Enes <[email protected]>
AuthorDate: Thu Dec 1 14:19:39 2022 +0300
Update actions config
🚨 Node 12 has an end of life on April 30, 2022.
The GitHub Actions workflow gives the following deprecation warning while
running the action:
> Node.js 12 actions are deprecated. For more information see:
github.blog/changelog/2022-09-22-github-actions-all-actions-will-begin-running-on-node16-instead-of-node12.
This PR updates the default runtime to
[node16](https://github.blog/changelog/2021-12-10-github-actions-github-hosted-runners-now-run-node-js-16-by-default/)
rather then node12.
This is supported on all Actions Runners v2.285.0 or later.
---
.github/actions/actions-ding/action.yml | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/.github/actions/actions-ding/action.yml
b/.github/actions/actions-ding/action.yml
index 32f63c5..e732559 100644
--- a/.github/actions/actions-ding/action.yml
+++ b/.github/actions/actions-ding/action.yml
@@ -19,5 +19,5 @@ inputs:
required: false
runs:
- using: 'node12'
+ using: 'node16'
main: 'dist/index.js'