Skip to content

Commit

Permalink
Bump actions/setup-java from 2.2.0 to 2.3.0 (#65)
Browse files Browse the repository at this point in the history
* Bump actions/setup-java from 2.2.0 to 2.3.0

Bumps [actions/setup-java](https://github.com/actions/setup-java) from 2.2.0 to 2.3.0.
- [Release notes](https://github.com/actions/setup-java/releases)
- [Commits](actions/setup-java@v2.2.0...v2.3.0)

---
updated-dependencies:
- dependency-name: actions/setup-java
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>

* use setup-java cache

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Olivier Lamy <olamy@apache.org>
  • Loading branch information
dependabot[bot] and olamy committed Aug 31, 2021
1 parent ade6cb2 commit 4d7ef90
Showing 1 changed file with 3 additions and 10 deletions.
13 changes: 3 additions & 10 deletions .github/workflows/maven.yml
Expand Up @@ -34,19 +34,12 @@ jobs:
- name: Checkout
uses: actions/checkout@v2.3.4

- name: Cache local Maven repository
uses: actions/cache@v2.1.6
with:
path: ~/.m2/repository
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
restore-keys: |
${{ runner.os }}-maven-
- name: Set up JDK
uses: actions/setup-java@v2.2.0
uses: actions/setup-java@v2.3.0
with:
cache: 'maven'
java-version: ${{ matrix.java }}
distribution: 'zulu'
distribution: 'temurin'

- name: Build with Maven
run: mvn verify -e -B -V -P run-its

0 comments on commit 4d7ef90

Please sign in to comment.