Skip to content

Bump mockito.version from 5.13.0 to 5.14.0 #784

Bump mockito.version from 5.13.0 to 5.14.0

Bump mockito.version from 5.13.0 to 5.14.0 #784

Workflow file for this run

name: build
on: [pull_request]
jobs:
build:
if: github.repository_owner == 'hazelcast'
runs-on: ubuntu-latest
name: Build
steps:
- uses: actions/checkout@v4
- name: Read Java Config
run: cat ${{ github.workspace }}/.github/java-config.env >> $GITHUB_ENV
- name: Setup JDK
uses: actions/setup-java@v4
with:
java-version: ${{ env.JAVA_VERSION }}
architecture: 'x64'
distribution: ${{ env.JAVA_DISTRIBUTION }}
cache: 'maven'
- name: Build with Maven
run: ./mvnw --settings settings.xml clean package -V -B -P checkstyle,findbugs -Dhz.snapshot.internal.username=${{ secrets.HZ_SNAPSHOT_INTERNAL_USERNAME }} -Dhz.snapshot.internal.password=${{ secrets.HZ_SNAPSHOT_INTERNAL_PASSWORD }}