Skip to content

build(deps-dev): bump eslint from 10.6.0 to 10.8.0 #1893

build(deps-dev): bump eslint from 10.6.0 to 10.8.0

build(deps-dev): bump eslint from 10.6.0 to 10.8.0 #1893

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@9af89fc71515a100421586dfdb3dc9c984fbf411 # v2.19.4
with:
egress-policy: audit
- uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
- name: Set up JDK
uses: actions/setup-java@1bcf9fb12cf4aa7d266a90ae39939e61372fe520 # v5.4.0
with:
java-version: 21
distribution: temurin
cache: gradle
- name: Set up NodeJS
uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6.4.0
with:
node-version: 24
cache: npm
- name: Build with Gradle
run: ./gradlew assemble check
env:
PGPASSWORD: postgres