Skip to content

[Snyk] Upgrade org.hdrhistogram:HdrHistogram from 2.1.12 to 2.2.1 #23

[Snyk] Upgrade org.hdrhistogram:HdrHistogram from 2.1.12 to 2.2.1

[Snyk] Upgrade org.hdrhistogram:HdrHistogram from 2.1.12 to 2.2.1 #23

Workflow file for this run

name: Java CI
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Set up JDK 1.8
uses: actions/setup-java@v1
with:
java-version: 1.8
- name: Build with Maven
run: mvn package -B --file pom.xml
test:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-18.04, macOS-latest, windows-2016]
# test on both latest and specific update of each major version:
java: [7, 7.0.181, 8, 8.0.192, 9, 10, 11, 11.0.3, 12, 13, 13.0.4, 14, 15, 16, 17, 18-ea]
fail-fast: false
max-parallel: 5
name: Test JDK ${{ matrix.java }}, ${{ matrix.os }}
steps:
- uses: actions/checkout@v1
- name: Set up JDK
uses: actions/setup-java@v1
with:
java-version: ${{ matrix.java }}
- name: Test with Maven
run: mvn test -B --file pom.xml