From c4892a4a1a048e16f445c4485fb9238291222be1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Iv=C3=A1n=20Ovejero?= Date: Fri, 21 Aug 2026 14:07:18 +0000 Subject: [PATCH] ci: Pin the runner image in the `-pc` e2e job (#36825) --- .github/workflows/test-e2e-pc-nightly.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/test-e2e-pc-nightly.yml b/.github/workflows/test-e2e-pc-nightly.yml index 94c648c43d1..d481405fcce 100644 --- a/.github/workflows/test-e2e-pc-nightly.yml +++ b/.github/workflows/test-e2e-pc-nightly.yml @@ -12,12 +12,18 @@ on: required: false default: 'n8nio/n8n:nightly-pc' type: string + runners-image: + description: 'Task runner image to boot beside it' + required: false + default: 'n8nio/runners:nightly' + type: string permissions: contents: read env: TEST_IMAGE_N8N: ${{ inputs.image || 'n8nio/n8n:nightly-pc' }} + TEST_IMAGE_TASK_RUNNER: ${{ inputs.runners-image || 'n8nio/runners:nightly' }} jobs: e2e-pc: