diff options
author | Aaron <51387595+AzureAaron@users.noreply.github.com> | 2024-04-20 00:23:21 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-04-20 00:23:21 -0400 |
commit | 6b13d8943a42b54717ec0a6e53b061bd22c64f22 (patch) | |
tree | 5baac94dfecfb8b6fcf5e949cf28e7244e1612eb /.github/workflows/beta.yml | |
parent | 3c5707db06e5dd2938062eee1cceb3e8824225a9 (diff) | |
download | Skyblocker-6b13d8943a42b54717ec0a6e53b061bd22c64f22.tar.gz Skyblocker-6b13d8943a42b54717ec0a6e53b061bd22c64f22.tar.bz2 Skyblocker-6b13d8943a42b54717ec0a6e53b061bd22c64f22.zip |
Java 21 CI (#661)
Diffstat (limited to '.github/workflows/beta.yml')
-rw-r--r-- | .github/workflows/beta.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/beta.yml b/.github/workflows/beta.yml index 929a85bb..71d23311 100644 --- a/.github/workflows/beta.yml +++ b/.github/workflows/beta.yml @@ -31,11 +31,11 @@ jobs: file = file.toString().split("\n").map(e => e.trim().startsWith("mod_version") ? `${e}-beta-${process.env.GITHUB_SHA.substring(0, 7)}` : e).join("\n"); fs.writeFileSync("./gradle.properties", file); - - name: Set up JDK 17 + - name: Set up JDK 21 uses: actions/setup-java@v4 with: distribution: 'microsoft' - java-version: '17' + java-version: '21' - name: Initialize caches uses: actions/cache@v4 |