Skip to content

Update dependency org.mockito:mockito-core to v5.4.0 #1659

Update dependency org.mockito:mockito-core to v5.4.0

Update dependency org.mockito:mockito-core to v5.4.0 #1659

Workflow file for this run

# This workflow will build a Java project with Maven
# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-maven
name: Java CI with Maven
on:
push:
branches: [ '**' ]
jobs:
build-with-maven-cache-github-action:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up JDK 11
uses: actions/setup-java@v3
with:
java-version: 11
distribution: 'temurin'
- name: Restore cache
uses: skjolber/maven-cache-github-action@v1
with:
step: restore
- name: Build with Maven
run: mvn -B package --file pom.xml
- name: Save cache
uses: skjolber/maven-cache-github-action@v1
with:
step: save