diff options
author | Vitaly Takmazov | 2024-01-02 13:14:51 +0300 |
---|---|---|
committer | Vitaly Takmazov | 2024-01-02 20:13:21 +0300 |
commit | 422d748acdacbb3a4dcdc63dcddcd83baee75d14 (patch) | |
tree | db7cb307333bf4f37aff3b5afb35fe97113811db | |
parent | 8d828de6ac6241e6ef05455b4c3314dc98b6c323 (diff) |
CI: update actions/setup-node and bump Node version
-rw-r--r-- | .github/workflows/ci.yml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index ff51816c..ed4dd895 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -73,10 +73,10 @@ jobs: timeout-minutes: 15 steps: - uses: actions/checkout@v4 - - name: Setup Node.JS 18 - uses: actions/setup-node@v3 + - name: Setup Node.JS 20 + uses: actions/setup-node@v4 with: - node-version: "18" + node-version: "20" - run: npm ci - run: npm run vnext:test - run: npm run vnext:lint |