From 2ce8e5a5a008f4ecf36687fec615753d4de28885 Mon Sep 17 00:00:00 2001 From: Daniel Date: Mon, 8 Jun 2026 16:41:21 +0200 Subject: [PATCH] Reverts last changes in wai-deploy action --- .github/workflows/wai-deploy.yml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.github/workflows/wai-deploy.yml b/.github/workflows/wai-deploy.yml index 05fa76576a..214457d272 100644 --- a/.github/workflows/wai-deploy.yml +++ b/.github/workflows/wai-deploy.yml @@ -21,8 +21,11 @@ jobs: restore-keys: | ${{ runner.os }}-node- - run: git config --global url."https://github.com/".insteadOf ssh://git@github.com/ - - name: Install dependencies (including act-tools dev dependencies) - run: npm i --include=dev + - name: Install dependencies + run: npm ci + # Since we control this we can safely just always use the latest + - name: Install act-tools latest + run: npm install github:act-rules/act-tools#main - name: Configure git run: | git config --global url."https://${{ secrets.WAI_GIT_NAME }}:${{ secrets.WAI_GIT_ACCESS_TOKEN }}@github.com".insteadOf "https://github.com"