From e02d621c788ba1908a49c01b600b346c85154cde Mon Sep 17 00:00:00 2001 From: "lvce-editor-helper-bot[bot]" <155071229+lvce-editor-helper-bot[bot]@users.noreply.github.com> Date: Thu, 9 Jul 2026 08:10:04 +0000 Subject: [PATCH 1/2] ci: exclude typescript from dependency updates --- scripts/update-dependencies.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/update-dependencies.sh b/scripts/update-dependencies.sh index 4176a60..5d479bc 100644 --- a/scripts/update-dependencies.sh +++ b/scripts/update-dependencies.sh @@ -16,7 +16,7 @@ fi function updateDependencies { echo "updating dependencies..." - OUTPUT=`ncu -u -x @types/node -x lerna` + OUTPUT=`ncu -u -x @types/node -x lerna -x typescript` SUB='All dependencies match the latest package versions' if [[ "$OUTPUT" == *"$SUB"* ]]; then echo "$OUTPUT" From 431aabe0455a09dbd5a5464220854755bd222b50 Mon Sep 17 00:00:00 2001 From: Le Vivilet Date: Mon, 13 Jul 2026 14:43:22 +0000 Subject: [PATCH 2/2] fix: use current macOS CI runner --- .github/workflows/pr.yml | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/.github/workflows/pr.yml b/.github/workflows/pr.yml index d8a91b7..711ec9b 100644 --- a/.github/workflows/pr.yml +++ b/.github/workflows/pr.yml @@ -7,10 +7,17 @@ on: jobs: pr: + name: pr (${{ matrix.name }}) strategy: fail-fast: false matrix: - os: [ubuntu-22.04, macos-13, windows-2022] + include: + - name: ubuntu-22.04 + os: ubuntu-22.04 + - name: macos-13 + os: macos-14 + - name: windows-2022 + os: windows-2022 runs-on: ${{ matrix.os == 'macos-13' && 'macos-15' || matrix.os }} timeout-minutes: 15 steps: