From eccc75547a7f6625d79c4502a49a76c06a6144e5 Mon Sep 17 00:00:00 2001 From: Arthur Baars Date: Tue, 2 Sep 2025 15:28:28 +0000 Subject: [PATCH 1/2] Fix update-bundle workflow --- .github/workflows/update-bundle.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/update-bundle.yml b/.github/workflows/update-bundle.yml index a2501d98cc..0f7357fd67 100644 --- a/.github/workflows/update-bundle.yml +++ b/.github/workflows/update-bundle.yml @@ -36,6 +36,9 @@ jobs: git config --global user.email "41898282+github-actions[bot]@users.noreply.github.com" git config --global user.name "github-actions[bot]" + - name: Install dependencies + run: npm ci + - name: Update bundle uses: ./.github/actions/update-bundle From d5dbc128c57b115f084c1351f8d1e3da3584fa2a Mon Sep 17 00:00:00 2001 From: Arthur Baars Date: Tue, 2 Sep 2025 17:25:43 +0000 Subject: [PATCH 2/2] Add actions/setup-node step --- .github/workflows/update-bundle.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/update-bundle.yml b/.github/workflows/update-bundle.yml index 0f7357fd67..10f5be738d 100644 --- a/.github/workflows/update-bundle.yml +++ b/.github/workflows/update-bundle.yml @@ -36,6 +36,12 @@ jobs: git config --global user.email "41898282+github-actions[bot]@users.noreply.github.com" git config --global user.name "github-actions[bot]" + - name: Set up Node.js + uses: actions/setup-node@v4 + with: + node-version: '20.x' + cache: 'npm' + - name: Install dependencies run: npm ci