Skip to content

Commit

Permalink
(MAJOR) Update action to run on Node 16 instead of Node 12 (#39)
Browse files Browse the repository at this point in the history
  • Loading branch information
matteovivona authored and Vadorequest committed Oct 14, 2022
1 parent 35bd21e commit 5e7a9fc
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/update-codeclimate-coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.

Expand Down
2 changes: 1 addition & 1 deletion action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,5 +16,5 @@ inputs:
required: false
default: 'false'
runs:
using: 'node12'
using: 'node16'
main: 'github-action-runtime/index.js'

0 comments on commit 5e7a9fc

Please sign in to comment.