Skip to content

Commit

Permalink
Bump required Node version to 16
Browse files Browse the repository at this point in the history
Signed-off-by: Maurício Meneghini Fauth <mauricio@fauth.dev>
  • Loading branch information
MauricioFauth committed Nov 29, 2023
1 parent d2b967c commit 2aac253
Show file tree
Hide file tree
Showing 7 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/daily-snapshots.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
matrix:
include:
- { version: '5.2', branch: 'QA_5_2', php-version: '7.2', node-version: '12', python-version: '3.7' }
- { version: '6.0', branch: 'master', php-version: '8.1', node-version: '14', python-version: '3.7' }
- { version: '6.0', branch: 'master', php-version: '8.1', node-version: '16', python-version: '3.7' }
steps:
- name: Check out code
uses: actions/checkout@v4
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/frontend-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
- name: Set up Node
uses: actions/setup-node@v3
with:
node-version: '14'
node-version: '16'
cache: 'yarn'

- name: Install modules
Expand All @@ -47,7 +47,7 @@ jobs:
- name: Set up Node
uses: actions/setup-node@v3
with:
node-version: '14'
node-version: '16'
cache: 'yarn'

- name: Install modules
Expand All @@ -66,7 +66,7 @@ jobs:
- name: Set up Node
uses: actions/setup-node@v3
with:
node-version: '14'
node-version: '16'
cache: 'yarn'

- name: Install modules
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/other-tools.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ jobs:
- name: Set up Node
uses: actions/setup-node@v3
with:
node-version: '14'
node-version: '16'
cache: 'yarn'

- name: Set up Python
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test-selenium.yml
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ jobs:
- name: Set up Node
uses: actions/setup-node@v3
with:
node-version: '14'
node-version: '16'
cache: 'yarn'

- name: Install modules
Expand Down
2 changes: 1 addition & 1 deletion .scrutinizer.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ build:
analysis:
environment:
php: 8.1
node: 14
node: 16
dependencies:
before:
- composer config --unset repositories.0
Expand Down
2 changes: 1 addition & 1 deletion doc/setup.rst
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ In order to install from Git, you'll need a few supporting applications:

* `Git <https://git-scm.com/downloads>`_ to download the source, or you can download the most recent source directly from `Github <https://codeload.github.com/phpmyadmin/phpmyadmin/zip/QA_5_2>`_
* `Composer <https://getcomposer.org/download/>`__
* `Node.js <https://nodejs.org/en/download/>`_ (version 14 or higher)
* `Node.js <https://nodejs.org/en/download/>`_ (version 16 or higher)
* `Yarn <https://classic.yarnpkg.com/en/docs/install>`_

You can clone current phpMyAdmin source from
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"license": "GPL-2.0",
"private": true,
"engines": {
"node": ">=14"
"node": ">=16"
},
"type": "module",
"dependencies": {
Expand Down

0 comments on commit 2aac253

Please sign in to comment.