From 41fd492d12f7e4eda730394251cbc4df8fda7814 Mon Sep 17 00:00:00 2001 From: Arne Vlaeminck Date: Wed, 17 Jun 2026 14:43:53 +0200 Subject: [PATCH] Tried fixing script --- .gitea/workflows/deploy-dev.yaml | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/.gitea/workflows/deploy-dev.yaml b/.gitea/workflows/deploy-dev.yaml index c83f6cc..1595a07 100644 --- a/.gitea/workflows/deploy-dev.yaml +++ b/.gitea/workflows/deploy-dev.yaml @@ -10,7 +10,18 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout code - uses: actions/checkout@v2 + uses: actions/checkout@v4 + + - name: Setup Node.js + uses: actions/setup-node@v4 + with: + node-version: '26' + cache: 'npm' + + - name: Verify Node.js version + run: | + node -v + npm -v - name: Install smbclient run: |