From 2fa4a8f74565c149bb20736f098a0827b488950a Mon Sep 17 00:00:00 2001 From: ShaharNaveh <50263213+ShaharNaveh@users.noreply.github.com> Date: Tue, 2 Jun 2026 10:44:11 +0300 Subject: [PATCH 1/2] Remove node24 installation. It's the default now --- .github/workflows/ci.yaml | 7 ------- .github/workflows/cron-ci.yaml | 1 - 2 files changed, 8 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 3ff74e6a5e5..574a0bbb2fa 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -33,7 +33,6 @@ env: CARGO_PROFILE_DEV_DEBUG: 0 CARGO_PROFILE_RELEASE_DEBUG: 0 CARGO_TERM_COLOR: always - FORCE_JAVASCRIPT_ACTIONS_TO_NODE24: true # TODO: Remove on 2026/06/02 CI: true jobs: @@ -541,12 +540,6 @@ jobs: key: prek-${{ hashFiles('.pre-commit-config.yaml') }} path: ~/.cache/prek - # TODO: Remove on 2026/06/02 when node24 is the default - - uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6.4.0 - with: - package-manager-cache: false - node-version: "24" - - name: install prek id: prek uses: j178/prek-action@bdca6f102f98e2b4c7029491a53dfd366469e33d # v2.0.4 diff --git a/.github/workflows/cron-ci.yaml b/.github/workflows/cron-ci.yaml index ac1a1cadbfb..5b4ba13c8a0 100644 --- a/.github/workflows/cron-ci.yaml +++ b/.github/workflows/cron-ci.yaml @@ -15,7 +15,6 @@ on: env: CARGO_ARGS: --no-default-features --features stdlib,importlib,stdio,encodings,ssl-rustls-aws-lc,jit,host_env - FORCE_JAVASCRIPT_ACTIONS_TO_NODE24: 'true' # TODO: Remove on 2026/06/02 jobs: # codecov collects code coverage data from the rust tests, python snippets and python test suite. From 0b9bc3916eb722dd1f8cb0c0bb41773a05a1462b Mon Sep 17 00:00:00 2001 From: ShaharNaveh <50263213+ShaharNaveh@users.noreply.github.com> Date: Tue, 2 Jun 2026 11:13:42 +0300 Subject: [PATCH 2/2] Fix insta tests for llvm-cov --- .github/workflows/cron-ci.yaml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/cron-ci.yaml b/.github/workflows/cron-ci.yaml index 5b4ba13c8a0..9c2f13524f0 100644 --- a/.github/workflows/cron-ci.yaml +++ b/.github/workflows/cron-ci.yaml @@ -24,6 +24,8 @@ jobs: runs-on: ubuntu-latest # Disable this scheduled job when running on a fork. if: ${{ github.repository == 'RustPython/RustPython' || github.event_name != 'schedule' }} + env: + INSTA_WORKSPACE_ROOT: ${{ github.workspace }} steps: - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: