diff options
| author | Yasin <19829407+LifeIsAParadox@users.noreply.github.com> | 2025-05-05 23:03:32 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-05-05 23:03:32 +0200 |
| commit | 05ff370860561290733a49868d1c0084ec190508 (patch) | |
| tree | be7fad7918c52da0f431a11f315d2ef4dc019ca8 /.github/workflows | |
| parent | d963d98faed7bed88db11df2e9643e114a8c2132 (diff) | |
| download | Skyblocker-05ff370860561290733a49868d1c0084ec190508.tar.gz Skyblocker-05ff370860561290733a49868d1c0084ec190508.tar.bz2 Skyblocker-05ff370860561290733a49868d1c0084ec190508.zip | |
fix gradle timout (#1251)
* fix gradle timout
fix gradle timeout by using v4
* Update beta.yml
* setup-gradle
* Try without chmod
---------
Co-authored-by: Kevinthegreat <92656833+kevinthegreat1@users.noreply.github.com>
Diffstat (limited to '.github/workflows')
| -rw-r--r-- | .github/workflows/beta.yml | 8 | ||||
| -rw-r--r-- | .github/workflows/buildrelease.yml | 2 |
2 files changed, 3 insertions, 7 deletions
diff --git a/.github/workflows/beta.yml b/.github/workflows/beta.yml index cd3809f3..56bee3a9 100644 --- a/.github/workflows/beta.yml +++ b/.github/workflows/beta.yml @@ -62,9 +62,7 @@ jobs: java-version: '21' - name: Setup Gradle - uses: gradle/actions/setup-gradle@v3 - with: - validate-wrappers: true + uses: gradle/actions/setup-gradle@v4 - name: Build with Gradle run: ./gradlew build @@ -104,9 +102,7 @@ jobs: distribution: 'microsoft' java-version: '21' - name: Setup Gradle - uses: gradle/actions/setup-gradle@v3 - with: - validate-wrappers: true + uses: gradle/actions/setup-gradle@v4 - name: Run client gametest with Xvfb uses: modmuss50/xvfb-action@v1 diff --git a/.github/workflows/buildrelease.yml b/.github/workflows/buildrelease.yml index 7cf0bfde..5d9bf631 100644 --- a/.github/workflows/buildrelease.yml +++ b/.github/workflows/buildrelease.yml @@ -80,7 +80,7 @@ jobs: - name: Release id: uploadrelease - uses: softprops/action-gh-release@v1 + uses: softprops/action-gh-release@v2 with: body: ${{ steps.read_changelog.outputs.changelog }} token: ${{ secrets.GH_RELEASE }} |
