Skip to content

Commit

Permalink
chore(deps): update actions/setup-java action to v4 (#1069)
Browse files Browse the repository at this point in the history
* chore(deps): update actions/setup-java action to v4

* chore: add temurin distribution to Java setup

---------

Co-authored-by: Knut Olav Løite <[email protected]>
  • Loading branch information
renovate-bot and olavloite authored May 21, 2024
1 parent 7741b23 commit e8845b0
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/integration-emulator.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,9 +30,10 @@ jobs:
${{ runner.os }}-maven-
- name: Set up JDK 17
uses: actions/setup-java@v1
uses: actions/setup-java@v4
with:
java-version: 17
distribution: temurin

- name: Install dependencies
run: mvn install -DskipTests
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,9 +34,10 @@ jobs:
${{ runner.os }}-maven-
- name: Set up JDK 17
uses: actions/setup-java@v1
uses: actions/setup-java@v4
with:
java-version: 17
distribution: temurin
- name: Auth
uses: google-github-actions/auth@v2
with:
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/maven.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,10 @@ jobs:
${{ runner.os }}-maven-
- name: Set up JDK 17
uses: actions/setup-java@v1
uses: actions/setup-java@v4
with:
java-version: 17
distribution: temurin

- name: Build with Maven
run: mvn install -B -V -DskipTests
Expand Down

0 comments on commit e8845b0

Please sign in to comment.