diff options
author | Philipp David <pd@3b.pm> | 2022-03-17 23:32:44 +0100 |
---|---|---|
committer | Philipp David <pd@3b.pm> | 2022-03-17 23:32:44 +0100 |
commit | f01b8f29c68cde62d31293175482d1d0c9bc23e0 (patch) | |
tree | d514021a08df2cfa3de373b3183c0e00c153efea /.github | |
parent | 440e9731e2c49613891785436101423d3b6bc883 (diff) | |
download | PrismLauncher-f01b8f29c68cde62d31293175482d1d0c9bc23e0.tar.gz PrismLauncher-f01b8f29c68cde62d31293175482d1d0c9bc23e0.tar.bz2 PrismLauncher-f01b8f29c68cde62d31293175482d1d0c9bc23e0.zip |
Use Temurin instead of AdoptOpenJDK
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/build.yml | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index a0736f76..325e28b8 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -65,9 +65,10 @@ jobs: qt5:p - name: Install OpenJDK - uses: AdoptOpenJDK/install-jdk@v1 + uses: actions/setup-java@v3 with: - version: '17' + distribution: 'temurin' + java-version: '17' - name: Cache Qt if: runner.os != 'Windows' |