diff --git a/.github/workflows/deploy-docs.yml b/.github/workflows/deploy-docs.yml index dedb5fe..7a885f3 100644 --- a/.github/workflows/deploy-docs.yml +++ b/.github/workflows/deploy-docs.yml @@ -15,7 +15,7 @@ jobs: ref: ${{ github.head_ref }} fetch-depth: 0 - name: Generate static TypeDoc files - uses: actions/setup-node@v2 + uses: actions/setup-node@v4 with: node-version: '16' - run: npm ci diff --git a/.github/workflows/license-scanning-node.yml b/.github/workflows/license-scanning-node.yml index 60052c3..e170e2a 100644 --- a/.github/workflows/license-scanning-node.yml +++ b/.github/workflows/license-scanning-node.yml @@ -18,7 +18,7 @@ jobs: steps: - uses: actions/checkout@v3 - name: Use Node.js ${{ matrix.node-version }} - uses: actions/setup-node@v3 + uses: actions/setup-node@v4 with: node-version: ${{ matrix.node-version }} - run: npm ci --prod diff --git a/.github/workflows/npm.yml b/.github/workflows/npm.yml index 945e1f4..ca4e2a9 100644 --- a/.github/workflows/npm.yml +++ b/.github/workflows/npm.yml @@ -22,7 +22,7 @@ jobs: - run: npm version patch -m "[RELEASE] %s" - run: git push # Setup .npmrc file to publish to npm - - uses: actions/setup-node@v3 + - uses: actions/setup-node@v4 with: node-version: '18.x' registry-url: 'https://registry.npmjs.org' diff --git a/.github/workflows/security.yml b/.github/workflows/security.yml index 4609a16..c886ca5 100644 --- a/.github/workflows/security.yml +++ b/.github/workflows/security.yml @@ -24,7 +24,7 @@ jobs: - name: Checkout uses: actions/checkout@v3 - name: Set up Node - uses: actions/setup-node@v3 + uses: actions/setup-node@v4 with: node-version: 18 - name: Build project with NPM