Skip to content

Commit 7a15e48

Browse files
committed
Update workflows
1 parent 886a851 commit 7a15e48

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

.github/workflows/build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,12 +19,12 @@ jobs:
1919
- name: Setup Gradle
2020
uses: gradle/actions/setup-gradle@v4
2121
with:
22-
gradle-version: 8.13
22+
gradle-version: 8.14.3
2323
- name: Build TASmod with Gradle
2424
run: gradle build
2525
- name: Upload Test Report
2626
uses: actions/upload-artifact@v4
27-
if: always()
27+
if: ${{ !cancelled() }}
2828
with:
2929
name: TestResult
3030
path: build/test-results/test/*.xml

.github/workflows/buildandupload.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
- name: Setup Gradle
2626
uses: gradle/actions/setup-gradle@v4
2727
with:
28-
gradle-version: 8.13
28+
gradle-version: 8.14.3
2929
- name: Build TASmod with Gradle
3030
run: gradle build
3131
- name: Upload artifact

.github/workflows/check_formatting.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,6 @@ jobs:
1919
- name: Setup Gradle
2020
uses: gradle/actions/setup-gradle@v4
2121
with:
22-
gradle-version: 8.13
22+
gradle-version: 8.14.3
2323
- name: Spotless Check
2424
run: gradle spotlessCheck

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
- name: Setup Gradle
1818
uses: gradle/actions/setup-gradle@v4
1919
with:
20-
gradle-version: 8.13
20+
gradle-version: 8.14.3
2121
- name: Setup workspace
2222
run: gradle build -Prelease=true
2323
- name: Upload assets

.github/workflows/test_report.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
report:
1313
runs-on: ubuntu-latest
1414
steps:
15-
- uses: dorny/test-reporter@v1.9.1
15+
- uses: dorny/test-reporter@v2
1616
with:
1717
artifact: TestResult
1818
name: TASmod Tests

0 commit comments

Comments
 (0)