From c7568853b78af3fd2be6b5980b91f4cc93f3bbad Mon Sep 17 00:00:00 2001 From: prereview-bot Date: Fri, 10 May 2024 19:20: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 520d2f7a83..3f0128ee43 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.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 efc608ac1c..6c30075dcf 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.0-jammy AS test-integration WORKDIR /app COPY --from=npm-dev /app/ .