From ed65c1cf3cb96457a1b40623dd58c39e49d0f371 Mon Sep 17 00:00:00 2001 From: HyCraftHD Date: Thu, 1 Aug 2024 16:01:28 +0200 Subject: [PATCH] Update .github files --- .github/ISSUE_TEMPLATE/bug_report.yml | 1 + .github/workflows/build.yml | 8 ++++---- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/bug_report.yml b/.github/ISSUE_TEMPLATE/bug_report.yml index 70814967..a797517d 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.yml +++ b/.github/ISSUE_TEMPLATE/bug_report.yml @@ -31,6 +31,7 @@ body: attributes: label: Used minecraft version options: + - 1.21.x - 1.20.x - 1.19.x - 1.18.x diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index e4339aa3..ea30ac72 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -5,17 +5,17 @@ jobs: build: strategy: matrix: - java: [17] + java: [21] os: [ubuntu-latest] name: Build - Java ${{ matrix.java }} runs-on: ${{ matrix.os }} steps: - name: checkout repository - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: validate gradle wrapper - uses: gradle/wrapper-validation-action@v1 + uses: gradle/actions/wrapper-validation@v3 - name: setup jdk ${{ matrix.java }} - uses: actions/setup-java@v3 + uses: actions/setup-java@v4 with: distribution: temurin java-version: ${{ matrix.java }}