From 48ea8d391e4468499b69a599db5a02a1ad22a13e Mon Sep 17 00:00:00 2001 From: Alec Rust Date: Sat, 13 Jan 2024 15:28:26 +0000 Subject: [PATCH] Use LTS Node version in CI workflows --- .github/workflows/deploy-demo.yml | 4 ++-- .github/workflows/deploy-plugin.yml | 4 ++-- .github/workflows/lint.yml | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/deploy-demo.yml b/.github/workflows/deploy-demo.yml index d0d245a..480e546 100644 --- a/.github/workflows/deploy-demo.yml +++ b/.github/workflows/deploy-demo.yml @@ -24,7 +24,7 @@ jobs: - name: Setup Node uses: actions/setup-node@v4 with: - node-version: 19 + node-version: "lts/*" cache: "npm" - name: Install Node packages run: npm ci @@ -44,7 +44,7 @@ jobs: - name: Setup Node uses: actions/setup-node@v4 with: - node-version: 19 + node-version: "lts/*" cache: "npm" - name: Install Node packages run: npm ci diff --git a/.github/workflows/deploy-plugin.yml b/.github/workflows/deploy-plugin.yml index 3bfb1f8..f735f3e 100644 --- a/.github/workflows/deploy-plugin.yml +++ b/.github/workflows/deploy-plugin.yml @@ -14,7 +14,7 @@ jobs: - name: Setup Node uses: actions/setup-node@v4 with: - node-version: 19 + node-version: "lts/*" cache: "npm" - name: Install Node packages run: npm ci @@ -31,7 +31,7 @@ jobs: - name: Setup Node uses: actions/setup-node@v4 with: - node-version: 19 + node-version: "lts/*" cache: "npm" - name: Install Node packages run: npm ci diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 613e090..d73eede 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -12,7 +12,7 @@ jobs: - name: Setup Node uses: actions/setup-node@v4 with: - node-version: 19 + node-version: "lts/*" cache: "npm" - name: Install Node packages run: npm ci