From 3e97757e284612c91b82001553aba11719400877 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat, 8 Aug 2026 06:52:19 +0000 Subject: [PATCH 1/2] chore(deps): bump playwright in /docker Bumps playwright from v1.62.0-noble to v1.62.1-noble. --- updated-dependencies: - dependency-name: playwright dependency-version: v1.62.1-noble dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- docker/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker/Dockerfile b/docker/Dockerfile index 60c2a289..2ed697ea 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -1,4 +1,4 @@ -FROM mcr.microsoft.com/playwright:v1.62.0-noble AS base +FROM mcr.microsoft.com/playwright:v1.62.1-noble AS base RUN npm install -g bun@1.3.11 ADD . /app WORKDIR /app From 59b7395cc09dca187c3a6b51e1627e1520d94ebf Mon Sep 17 00:00:00 2001 From: kitsuyui Date: Sun, 9 Aug 2026 02:48:16 +0900 Subject: [PATCH 2/2] Align Playwright 1.62.1 across Docker and CI --- .github/workflows/octocov.yml | 2 +- .github/workflows/test.yml | 2 +- bun.lock | 6 +++--- package.json | 2 +- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/octocov.yml b/.github/workflows/octocov.yml index dea648c7..57fec755 100644 --- a/.github/workflows/octocov.yml +++ b/.github/workflows/octocov.yml @@ -18,7 +18,7 @@ jobs: octocov: runs-on: ubuntu-latest container: - image: mcr.microsoft.com/playwright:v1.62.0-noble + image: mcr.microsoft.com/playwright:v1.62.1-noble options: --user root services: httpbin: diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index d76366cb..bf5ebd38 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -19,7 +19,7 @@ jobs: test: runs-on: ubuntu-latest container: - image: mcr.microsoft.com/playwright:v1.62.0-noble + image: mcr.microsoft.com/playwright:v1.62.1-noble options: --user root services: httpbin: diff --git a/bun.lock b/bun.lock index 8c132b31..4441451e 100644 --- a/bun.lock +++ b/bun.lock @@ -5,7 +5,7 @@ "": { "name": "rendering-proxy", "dependencies": { - "playwright": "1.62.0", + "playwright": "1.62.1", "with-defer": "^1.0.0", "yargs": "^18.0.0", }, @@ -490,9 +490,9 @@ "pkg-types": ["pkg-types@1.3.1", "", { "dependencies": { "confbox": "^0.1.8", "mlly": "^1.7.4", "pathe": "^2.0.1" } }, "sha512-/Jm5M4RvtBFVkKWRu2BLUTNP8/M2a+UwuAX+ae4770q1qVGtfjG+WTCupoZixokjmHiry8uI+dlY8KXYV5HVVQ=="], - "playwright": ["playwright@1.62.0", "", { "dependencies": { "playwright-core": "1.62.0" }, "optionalDependencies": { "fsevents": "2.3.2" }, "bin": { "playwright": "cli.js" } }, "sha512-Z14dG305dgaLu6foB1TXQagFiW8JfSUIUaUuPaKQ6NtBPKF1P/qXcqfh6c6K/icPqdy37JmjbiBXf6JNg6Sylw=="], + "playwright": ["playwright@1.62.1", "", { "dependencies": { "playwright-core": "1.62.1" }, "optionalDependencies": { "fsevents": "2.3.2" }, "bin": { "playwright": "cli.js" } }, "sha512-0M+L3LAD8/nm554LOla9Ayx0j0tmFZ0FBcoQ7F1VuVHpM/XpiC8RcDzBQB8W5+hA8L22THxELzeF+2WcUzvcLg=="], - "playwright-core": ["playwright-core@1.62.0", "", { "bin": { "playwright-core": "cli.js" } }, "sha512-nsNRyq0r2zsG8AcRHWknc9QRA5XCueC7gWMrs+Gx2tlZn9hcl8zudfh00lhJPY1DE7NmZ6bDsT9g2yey8mXljA=="], + "playwright-core": ["playwright-core@1.62.1", "", { "bin": { "playwright-core": "cli.js" } }, "sha512-wPYSwEBJY9GHraISXqyqtx0na0LpO3XEX7jNDhntbex7tzUS7kLnZsOlFruFJB4Hi/rhDMjXGqHewDZ68nYZVw=="], "portfinder": ["portfinder@1.0.38", "", { "dependencies": { "async": "^3.2.6", "debug": "^4.3.6" } }, "sha512-rEwq/ZHlJIKw++XtLAO8PPuOQA/zaPJOZJ37BVuN97nLpMJeuDVLVGRwbFoBgLudgdTMP2hdRJP++H+8QOA3vg=="], diff --git a/package.json b/package.json index f829d651..c64a9412 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "dependencies": { - "playwright": "1.62.0", + "playwright": "1.62.1", "with-defer": "^1.0.0", "yargs": "^18.0.0" },