From 615e9de405c03e1724a7e5554f9ff31b38dde21b Mon Sep 17 00:00:00 2001 From: prereview-bot Date: Thu, 23 May 2024 19:32:40 +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 9c86d59b8..f3deac2ba 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.42.1-jammy + uses: docker://mcr.microsoft.com/playwright:v1.44.1-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 f02c86339..2a81d9cb1 100644 --- a/Dockerfile +++ b/Dockerfile @@ -45,7 +45,7 @@ RUN npm run build # # Stage: Integration test environment # -FROM mcr.microsoft.com/playwright:v1.42.1-jammy AS test-integration +FROM mcr.microsoft.com/playwright:v1.44.1-jammy AS test-integration WORKDIR /app COPY --from=npm-dev /app/ .