From fe4e6dcf1a3771e3c76c8b3be395f7557935005e Mon Sep 17 00:00:00 2001 From: Robin Date: Sun, 7 Jul 2024 11:24:29 +0200 Subject: [PATCH] fix action --- .github/workflows/release.yml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index af7dd48..b628776 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -14,8 +14,9 @@ jobs: uses: actions/checkout@v2 - name: setup JDK${{ matrix.java }} - uses: actions/setup-java@1 + uses: actions/setup-java@v4 with: + distribution: 'temurin' java-version: ${{ matrix.java }} - name: Setup Gradle @@ -29,9 +30,9 @@ jobs: id: minecraft_version run: grep "minecraftVersion" gradle.properties -m 1 | sed "s/\s//g" >> $GITHUB_OUTPUT - - name: Create Realease + - name: Create Release id: create_release - uses: ncipollo/release-action@1 + uses: ncipollo/release-action@v1 env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} with: