From 5e7a9fc3596a9e3a40ab0ca25c398fb7d9ba091f Mon Sep 17 00:00:00 2001 From: Matteo Vivona Date: Fri, 14 Oct 2022 13:53:05 +0200 Subject: [PATCH] (MAJOR) Update action to run on Node 16 instead of Node 12 (#39) --- .github/workflows/update-codeclimate-coverage.yml | 2 +- README.md | 6 +++--- action.yml | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/update-codeclimate-coverage.yml b/.github/workflows/update-codeclimate-coverage.yml index 6a03547d..64cca7cb 100644 --- a/.github/workflows/update-codeclimate-coverage.yml +++ b/.github/workflows/update-codeclimate-coverage.yml @@ -21,7 +21,7 @@ jobs: - name: Installing node.js uses: actions/setup-node@v1 # Used to install node environment - XXX https://github.com/actions/setup-node with: - node-version: '12.x' # Use the same node.js version as the one Vercel's uses (currently node12.x) + node-version: '16.x' # Use the same node.js version as the one Vercel's uses (currently node16.x) run-tests-coverage: name: Run tests coverage and send report to Code Climate runs-on: ubuntu-18.04 diff --git a/README.md b/README.md index 242e75da..9b9b2a1d 100644 --- a/README.md +++ b/README.md @@ -231,10 +231,10 @@ We follow Semantic Versioning. (`major.minor.patch`) Our versioning process is completely automated, any changes landing on the `main` branch will trigger a new [release](../../releases). -- `MAJOR`: Behavioral change of the existing API that would result in a breaking change. +- `(MAJOR)`: Behavioral change of the existing API that would result in a breaking change. - E.g: Removing an input, or changing the output would result in a breaking change and thus would be released as a new MAJOR version. -- `Minor`: Behavioral change of the existing API that would **not** result in a breaking change. - - E.g: Adding an optional input would result in a non-breaking change and thus would be released as a new Minor version. +- `(MINOR)`: Behavioral change of the existing API that would **not** result in a breaking change. + - E.g: Adding an optional input would result in a non-breaking change and thus would be released as a new MINOR version. - `Patch`: Any other change. - E.g: Documentation, tests, refactoring, bug fix, etc. diff --git a/action.yml b/action.yml index 28a401dc..05a70681 100644 --- a/action.yml +++ b/action.yml @@ -16,5 +16,5 @@ inputs: required: false default: 'false' runs: - using: 'node12' + using: 'node16' main: 'github-action-runtime/index.js'