Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

build(nodejs): bump minimal nodejs and npm versions #2879

Merged
merged 1 commit into from
Dec 11, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 5 additions & 2 deletions .github/workflows/.dast-nuclei-cmd-api-server.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
name: DAST_Scan_Nuclei

env:
NODEJS_VERSION: v18.18.2

on:
push:
branches: [main, dev]
Expand All @@ -23,10 +26,10 @@ jobs:
indy-cli \
&& sudo rm -f /etc/apt/sources.list.d/sovrin.list*

- name: Set up NodeJS v16.9.1
- name: Set up NodeJS ${{ env.NODEJS_VERSION }}
uses: actions/[email protected]
with:
node-version: v16.9.1
node-version: ${{ env.NODEJS_VERSION }}

- name: Install jq
run: sudo apt update && sudo apt install -y jq
Expand Down
5 changes: 4 additions & 1 deletion .github/workflows/all-nodejs-packages-publish.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
name: all-nodejs-packages-publish

env:
NODEJS_VERSION: v18.18.2

on:
push:

Expand All @@ -21,7 +24,7 @@ jobs:
- uses: actions/[email protected]
with:
always-auth: true
node-version: '16.14.2'
node-version: ${{ env.NODEJS_VERSION }}
registry-url: 'https://registry.npmjs.org'
- name: ./tools/ci.sh
run: ./tools/ci.sh
Expand Down
7 changes: 5 additions & 2 deletions .github/workflows/cacti-dev-container-vscode-publish.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
name: connector-fabric-publish

env:
NODEJS_VERSION: v20.3.0

on:
push:
# Publish `v1.2.3` tags as releases.
Expand Down Expand Up @@ -27,10 +30,10 @@ jobs:
contents: read

steps:
- name: Use Node.js v20.3.0
- name: Use Node.js ${{ env.NODEJS_VERSION }}
uses: actions/[email protected]
with:
node-version: v20.3.0
node-version: ${{ env.NODEJS_VERSION }}

- uses: actions/[email protected]

Expand Down
Loading
Loading