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"