From 0c83fb0108dc4219fc55f320d38e7db668a4af08 Mon Sep 17 00:00:00 2001 From: prereview-bot Date: Thu, 29 Feb 2024 10:59:58 +0000 Subject: [PATCH] [dependabot skip] Fix Playwright versions --- .github/workflows/ci.yml | 2 +- Dockerfile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index fad029f19..0e95f41a1 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -207,7 +207,7 @@ jobs: - name: 'Run Playwright' id: 'playwright' - uses: docker://mcr.microsoft.com/playwright:v1.41.2-jammy + uses: docker://mcr.microsoft.com/playwright:v1.42.0-jammy with: args: env HOME=/root npx playwright test --forbid-only --shard=${{ matrix.shard }}/${{ strategy.job-total }} --retries 4 diff --git a/Dockerfile b/Dockerfile index f5f30f4df..3f6ca076d 100644 --- a/Dockerfile +++ b/Dockerfile @@ -45,7 +45,7 @@ RUN npm run build # # Stage: Integration test environment # -FROM mcr.microsoft.com/playwright:v1.41.2-jammy AS test-integration +FROM mcr.microsoft.com/playwright:v1.42.0-jammy AS test-integration WORKDIR /app COPY --from=npm-dev /app/ .