From 7d9b7bc87140de23f2de20d11dfbc6a2f746b4c0 Mon Sep 17 00:00:00 2001 From: Natsu Date: Mon, 1 Jul 2024 11:01:16 +0700 Subject: [PATCH] fix(dispatch.yml): update Node.js setup action to use version 4 instead of version 3 chore(dispatch.yml): update Node.js version to 18 --- .github/workflows/dispatch.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/dispatch.yml b/.github/workflows/dispatch.yml index df86baa4..50a2960a 100644 --- a/.github/workflows/dispatch.yml +++ b/.github/workflows/dispatch.yml @@ -50,9 +50,9 @@ jobs: uses: actions/checkout@v4 - name: Install Node.js - uses: actions/setup-node@v3 + uses: actions/setup-node@v4 with: - node-version: '16' + node-version: '18' - name: Install Prettier and JSON Sort Plugin run: npm install --global prettier prettier-plugin-sort-json