From 686452d19b3aeb325ac8312ad1141758fe9f478e Mon Sep 17 00:00:00 2001 From: imp2002 Date: Sat, 4 Feb 2023 08:35:59 +0800 Subject: [PATCH] fix: set Node version 18 in semantic-release (#272) --- .github/workflows/ci.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 16e2774..95c2e0d 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -43,6 +43,10 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 + - name: Use Node.js + uses: actions/setup-node@v3 + with: + node-version: '18.x' - name: Run semantic-release if: github.repository == 'casbin/casbin.js' && github.event_name == 'push'