Skip to content

Commit

Permalink
chore(github-actions): update Node.js version to 18.16.1
Browse files Browse the repository at this point in the history
  • Loading branch information
hdinia committed Jul 18, 2023
1 parent be61085 commit 48113e9
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 16 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/compatibility.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: compatibility
on:
push:
branches:
- 'compatibility'
- "compatibility"

jobs:
python-test:
Expand All @@ -11,11 +11,11 @@ jobs:
max-parallel: 9
matrix:
os: [windows-latest, ubuntu-20.04, macOS-latest]
python-version: [ 3.8 ]
python-version: [3.8]

steps:
- name: Checkout github repo
uses: actions/checkout@v2
uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v1
with:
Expand All @@ -33,13 +33,13 @@ jobs:
strategy:
max-parallel: 9
matrix:
os: [ windows-latest, ubuntu-20.04, macOS-latest ]
node-version: [ 10.x, 14.x ]
os: [windows-latest, ubuntu-20.04, macOS-latest]
node-version: [18.16.1]
steps:
- name: Checkout github repo
uses: actions/checkout@v1
uses: actions/checkout@v3
- name: Set up Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: Install dependencies
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
- name: 💚 Set up Node.js
uses: actions/setup-node@v3
with:
node-version: '14.x'
node-version: 18.16.1

- name: 💚 Install dependencies
run: npm install
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
runs-on: ubuntu-20.04
steps:
- name: Checkout github repo (+ download lfs dependencies)
uses: actions/checkout@v2
uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v1
with:
Expand Down Expand Up @@ -38,7 +38,7 @@ jobs:

steps:
- name: Checkout github repo (+ download lfs dependencies)
uses: actions/checkout@v2
uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v1
with:
Expand Down Expand Up @@ -68,11 +68,11 @@ jobs:
os: [ ubuntu-20.04 ]
steps:
- name: Checkout github repo
uses: actions/checkout@v1
uses: actions/checkout@v3
- name: Set up Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
uses: actions/setup-node@v3
with:
node-version: 14.x
node-version: 18.16.1
- name: Install dependencies
run: npm install
working-directory: webapp
Expand Down Expand Up @@ -100,7 +100,7 @@ jobs:
runs-on: ubuntu-20.04
needs: [python-test, npm-test]
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Download python coverage report
uses: actions/download-artifact@v3
with:
Expand Down
2 changes: 1 addition & 1 deletion docs/install/0-INSTALL.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ The front end is a [React](https://reactjs.org/) web application. A local build

Requirements :
- python : 3.8.x
- node : 14.x
- node : 18.16.1

1. First clone the projet:

Expand Down
2 changes: 1 addition & 1 deletion webapp/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"version": "2.14.4",
"private": true,
"engines": {
"node": "18.12.0"
"node": "18.16.1"
},
"dependencies": {
"@emotion/react": "11.10.6",
Expand Down

0 comments on commit 48113e9

Please sign in to comment.