Bump org.mockito:mockito-core from 5.11.0 to 5.12.0 (#152) #257
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build | |
on: [push, pull_request] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Install wkthtmltopdf | |
run: | | |
sudo apt-get install -y xfonts-base xfonts-75dpi xvfb libfontconfig | |
wget https://github.com/wkhtmltopdf/packaging/releases/download/0.12.6.1-2/wkhtmltox_0.12.6.1-2.jammy_amd64.deb | |
sudo dpkg -i wkhtmltox_0.12.6.1-2.jammy_amd64.deb | |
- name: Set up JDK 8 | |
uses: actions/setup-java@v3 | |
with: | |
java-version: '8' | |
distribution: 'adopt' | |
cache: maven | |
- name: Build with Maven | |
run: mvn --batch-mode --update-snapshots verify |