Skip to content

Commit

Permalink
update nodejs version to 18.x in github actions (#335)
Browse files Browse the repository at this point in the history
  • Loading branch information
zeeshanakram3 authored May 31, 2024
1 parent 3b5e144 commit 0a52beb
Show file tree
Hide file tree
Showing 5 changed files with 19 additions and 12 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest]
node-version: [16.x]
node-version: [18.x]
fail-fast: true
steps:
- uses: actions/checkout@v2
Expand All @@ -26,7 +26,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest]
node-version: [16.x]
node-version: [18.x]
fail-fast: true
steps:
- uses: actions/checkout@v2
Expand All @@ -42,10 +42,10 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Use Node.js 16.x
- name: Use Node.js 18.x
uses: actions/setup-node@v1
with:
node-version: 16.x
node-version: 18.x
- name: Prepare workspace
run: make prepare
- name: create joystream_default network
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,10 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Use Node.js 16.x
- name: Use Node.js 18.x
uses: actions/setup-node@v1
with:
node-version: 16.x
node-version: 18.x
- name: Create joystream_default network
run: docker network create joystream_default
- name: Prepare workspace
Expand All @@ -31,7 +31,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest]
node-version: [16.x]
node-version: [18.x]
fail-fast: true
steps:
- uses: actions/checkout@v2
Expand All @@ -50,7 +50,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest]
node-version: [16.x]
node-version: [18.x]
fail-fast: true
steps:
- uses: actions/checkout@v2
Expand All @@ -71,7 +71,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest]
node-version: [16.x]
node-version: [18.x]
fail-fast: true
steps:
- uses: actions/checkout@v2
Expand Down
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
# 4.0.3

## Misc

- Update Email notification subjects and tests [#333](https://github.com/Joystream/orion/pull/333)
- Update Node.js version to 18.x in all github actions.

# 4.0.2

## Bug Fixes:
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "orion",
"version": "4.0.2",
"version": "4.0.3",
"engines": {
"node": ">=16"
},
Expand Down

0 comments on commit 0a52beb

Please sign in to comment.