Skip to content

chore(deps): update github artifact actions (major) #456

chore(deps): update github artifact actions (major)

chore(deps): update github artifact actions (major) #456

# SPDX-FileCopyrightText: Copyright (c) 2016-2026 Objectionary.com
# SPDX-License-Identifier: MIT
---
# yamllint disable rule:line-length
name: Performance Regression Check
on:
pull_request:
branches:
- master
jobs:
benchmark:
timeout-minutes: 15
strategy:
matrix:
os: [ ubuntu-24.04 ]
java: [ 23 ]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/cache@v5
with:
path: ~/.m2/repository
key: ${{ runner.os }}-jdk-${{ matrix.java }}-maven-${{ hashFiles('**/pom.xml') }}
restore-keys: |
${{ runner.os }}-jdk-${{ matrix.java }}-maven-
- name: Run JMH Benchmark Action
uses: volodya-lombrozo/[email protected]
with:
java-version: "11"
base-ref: "master"
benchmark-command: |
mvn jmh:benchmark -Djmh.rf=json -Djmh.rff=benchmark.json
benchmark-file: "benchmark.json"