ci: update Playwright to v1.59.1 in CI base image
Build CI Images / build-ci-base (push) Failing after 18s
Release / release (push) Failing after 11s

This commit is contained in:
2026-04-26 20:56:18 -07:00
parent 72d4b85970
commit 58e319d8e3
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -7,7 +7,7 @@ on:
paths:
- 'Dockerfile.ci-base'
- 'package.json'
- 'bun.lockb'
- 'bun.lock'
- '.gitea/workflows/build-ci-images.yml'
schedule:
# Weekly rebuild to get latest Playwright/Bun versions
+1 -1
View File
@@ -2,7 +2,7 @@
# Used for Gitea Actions CI workflows
# Uses Microsoft Playwright image as base (Ubuntu-based) with Bun added
FROM mcr.microsoft.com/playwright:v1.58.0-jammy AS base
FROM mcr.microsoft.com/playwright:v1.59.1-jammy AS base
# Install unzip (required for Bun installation) and other tools
RUN apt-get update && apt-get install -y unzip && rm -rf /var/lib/apt/lists/*