Skip to content

Commit

Permalink
Upgraded Node version to 18 in all relevant GitHub Actions
Browse files Browse the repository at this point in the history
Signed-off-by: VRamakrishna <vramakr2@in.ibm.com>
  • Loading branch information
VRamakrishna committed Aug 27, 2024
1 parent 382acd3 commit ad2c2e7
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 15 deletions.
5 changes: 2 additions & 3 deletions .github/workflows/deploy_docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,10 @@ jobs:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v4.1.1

- name: Use Node.js 16.x
- name: Use Node.js 18.x
uses: actions/setup-node@v2
with:
node-version: 16.x
node-version: 18.x

- name: NPM INSTALL
run: npm install
Expand All @@ -39,4 +39,3 @@ jobs:
with:
branch: gh-pages # The branch the action should deploy to.
folder: docs/build # The folder the action should deploy.

8 changes: 4 additions & 4 deletions .github/workflows/test_asset-exchange-besu.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,10 +40,10 @@ jobs:
java-version: '11'
distribution: 'adopt'

- name: Use Node.js 16.x
- name: Use Node.js 18.x
uses: actions/setup-node@v4.0.2
with:
node-version: 16.x
node-version: 18.x

- name: Use Protoc 3.15
run: |
Expand Down Expand Up @@ -219,10 +219,10 @@ jobs:
java-version: '11'
distribution: 'adopt'

- name: Use Node.js 16.x
- name: Use Node.js 18.x
uses: actions/setup-node@v4.0.2
with:
node-version: 16.x
node-version: 18.x

- name: Use Protoc 3.15
run: |
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test_asset-transfer.yml
Original file line number Diff line number Diff line change
Expand Up @@ -430,10 +430,10 @@ jobs:
with:
go-version: '1.20.2'

- name: Use Node.js 16.x
- name: Use Node.js 18.x
uses: actions/setup-node@v2
with:
node-version: 16.x
node-version: 18.x

- name: Install RUST Toolchain minimal stable with clippy and rustfmt
uses: actions-rs/toolchain@v1
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test_data-sharing.yml
Original file line number Diff line number Diff line change
Expand Up @@ -723,10 +723,10 @@ jobs:
with:
go-version: '1.20.2'

- name: Use Node.js 16.x
- name: Use Node.js 18.x
uses: actions/setup-node@v2
with:
node-version: 16.x
node-version: 18.x

- name: Install RUST Toolchain minimal stable with clippy and rustfmt
uses: actions-rs/toolchain@v1
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/test_node-pkgs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:

strategy:
matrix:
node-version: [14.x, 16.x]
node-version: [14.x, 16.x, 18.x]
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/

steps:
Expand Down Expand Up @@ -55,7 +55,7 @@ jobs:

strategy:
matrix:
node-version: [16.x]
node-version: [18.x]
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/

steps:
Expand Down Expand Up @@ -89,10 +89,10 @@ jobs:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v4.1.1

- name: Use Node.js 16.x
- name: Use Node.js 18.x
uses: actions/setup-node@v2
with:
node-version: 16.x
node-version: 18.x

- name: NPM INSTALL
run: npm install
Expand Down

0 comments on commit ad2c2e7

Please sign in to comment.