Skip to content

Commit

Permalink
Add required distribution to java-setup action
Browse files Browse the repository at this point in the history
  • Loading branch information
thogarty committed Jan 6, 2024
1 parent e5cd4fa commit d470419
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/sync.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,8 @@ jobs:
matrix:
go-version: [1.20.x]
os: [ubuntu-latest]
java-version: [11.0.20]
java-version: [11.0.x]
java-distribution: [temurin]
runs-on: ${{ matrix.os }}
steps:
- name: Get current date
Expand All @@ -20,6 +21,7 @@ jobs:
uses: actions/setup-java@v2
with:
java-version: ${{ matrix.java-version }}
distribution: ${{ matrix.java-distribution }}
- name: Checkout Go Code
uses: actions/checkout@v2
with:
Expand Down

0 comments on commit d470419

Please sign in to comment.