Skip to content

Bump puppeteer from 24.35.0 to 24.36.1 #1800

Bump puppeteer from 24.35.0 to 24.36.1

Bump puppeteer from 24.35.0 to 24.36.1 #1800

Workflow file for this run

name: Testing For PRs
on: [ pull_request ]
permissions:
contents: read
jobs:
test:
runs-on: ubuntu-latest
name: test (postgres-${{ matrix.postgres-version }})
strategy:
matrix:
# See https://endoflife.date/postgresql
postgres-version: [ "14", "15", "16", "17", "18" ]
fail-fast: false
services:
postgres:
image: postgres:${{ matrix.postgres-version }}
env:
POSTGRES_PASSWORD: postgres
options: >-
--health-cmd pg_isready
--health-interval 10s
--health-timeout 20s
--health-retries 10
ports:
- 5432:5432
steps:
- name: Harden the runner (Audit all outbound calls)
uses: step-security/harden-runner@20cf305ff2072d973412fa9b1e3a4f227bda3c76 # v2.14.0
with:
egress-policy: audit
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
- name: Set up JDK
uses: actions/setup-java@f2beeb24e141e01a676f977032f5a29d81c9e27e # v5.1.0
with:
java-version: 21
distribution: temurin
cache: gradle
- name: Set up NodeJS
uses: actions/setup-node@6044e13b5dc448c55e2357c09f80417699197238 # v6.2.0
with:
node-version: 24
cache: npm
- name: Build with Gradle
run: ./gradlew assemble check
env:
PGPASSWORD: postgres