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