From 72902db711805ece0a4141fd3d2d437294ab75a1 Mon Sep 17 00:00:00 2001 From: prereview-bot Date: Mon, 10 Mar 2025 16:08:11 +0000 Subject: [PATCH] [dependabot skip] Fix Playwright versions --- .github/workflows/ci.yml | 6 +++--- Dockerfile | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index a9c6ec59d..e5b7bb15b 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -300,7 +300,7 @@ jobs: - name: 'Run Playwright' id: 'playwright' - uses: docker://mcr.microsoft.com/playwright:v1.50.1-jammy + uses: docker://mcr.microsoft.com/playwright:v1.51.0-jammy with: args: env HOME=/root npx playwright test integration --forbid-only --shard=${{ matrix.shard }}/${{ strategy.job-total }} --retries 4 @@ -390,7 +390,7 @@ jobs: - name: 'Run Playwright' id: 'playwright' - uses: docker://mcr.microsoft.com/playwright:v1.50.1-jammy + uses: docker://mcr.microsoft.com/playwright:v1.51.0-jammy with: args: env HOME=/root npx playwright test visual-regression --forbid-only --shard=${{ matrix.shard }}/${{ strategy.job-total }} --retries 4 @@ -428,7 +428,7 @@ jobs: path: assets/locales - name: 'Run the tests' - uses: docker://mcr.microsoft.com/playwright:v1.50.1-jammy + uses: docker://mcr.microsoft.com/playwright:v1.51.0-jammy with: args: env HOME=/root npx web-test-runner diff --git a/Dockerfile b/Dockerfile index d1935193a..53d67597e 100644 --- a/Dockerfile +++ b/Dockerfile @@ -71,7 +71,7 @@ RUN npm run build:assets && npm run build:app # # Stage: Integration test environment # -FROM mcr.microsoft.com/playwright:v1.50.1-jammy AS test-integration +FROM mcr.microsoft.com/playwright:v1.51.0-jammy AS test-integration WORKDIR /app COPY --from=npm-dev /app/ .