From e3f938eee3e16808ae361aa919e27abc39c508a2 Mon Sep 17 00:00:00 2001 From: engigu Date: Tue, 9 Jan 2024 14:15:31 +0800 Subject: [PATCH] update deploy yml --- .github/workflows/custom_deploy.yml | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/.github/workflows/custom_deploy.yml b/.github/workflows/custom_deploy.yml index 530de09..9fb256b 100644 --- a/.github/workflows/custom_deploy.yml +++ b/.github/workflows/custom_deploy.yml @@ -12,11 +12,16 @@ jobs: steps: - uses: actions/checkout@v3 - - name: Use Node.js Golang - uses: actions/setup-node@v3 + + - name: Set up Node.js + uses: actions/setup-node@v4 with: node-version: "20.x" - go-version: '>=1.20.2' + + - name: Set up Golang + uses: actions/setup-go@v5 + with: + go-version: "1.20" - name: Install npm dependencies run: npm ci