Skip to content

Bump org.hamcrest:hamcrest from 2.2 to 3.0 #485

Bump org.hamcrest:hamcrest from 2.2 to 3.0

Bump org.hamcrest:hamcrest from 2.2 to 3.0 #485

Workflow file for this run

name: Java CI
on:
push:
branches:
- master
- 'wicket-*'
pull_request:
branches:
- master
- 'wicket-*'
jobs:
build:
strategy:
matrix:
os: [ubuntu-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- name: Set up JDK
uses: actions/setup-java@v4
with:
java-version: 17
distribution: temurin
- name: Cache Local Maven Repository
uses: actions/cache@v4
with:
path: ~/.m2/repository
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
restore-keys: |
${{ runner.os }}-maven-
- name: Build with Maven
run: mvn -B package --file pom.xml