|
7 | 7 | runs-on: ubuntu-latest |
8 | 8 | steps: |
9 | 9 | - name: Checkout repository |
10 | | - uses: actions/checkout@v4 |
| 10 | + uses: actions/checkout@v6 |
11 | 11 | with: |
12 | 12 | show-progress: false |
13 | 13 | - name: Validate gradle wrapper |
14 | | - uses: gradle/wrapper-validation-action@v2 |
| 14 | + uses: gradle/actions/wrapper-validation@v5 |
15 | 15 | - name: Setup JDK 21 |
16 | | - uses: actions/setup-java@v4 |
| 16 | + uses: actions/setup-java@v5 |
17 | 17 | with: |
18 | 18 | java-version: 21 |
19 | 19 | distribution: temurin |
20 | 20 | - name: Setup Gradle |
21 | | - uses: gradle/actions/setup-gradle@v3 |
| 21 | + uses: gradle/actions/setup-gradle@v5 |
22 | 22 | with: |
23 | | - cache-read-only: ${{ github.ref != 'refs/heads/main' && github.ref != 'refs/heads/dev' && github.ref != 'refs/heads/archloom' }} |
24 | | - add-job-summary: 'always' # maybe change to error only? |
| 23 | + cache-read-only: ${{ github.ref != 'refs/heads/master' && github.ref != 'refs/heads/dev' && github.ref != 'refs/heads/archloom' }} |
| 24 | + add-job-summary: 'always' |
25 | 25 | - name: Make gradle wrapper executable |
26 | | - if: ${{ runner.os != 'Windows' }} |
27 | 26 | run: chmod +x ./gradlew |
28 | 27 | - name: Build |
29 | 28 | run: ./gradlew build |
30 | 29 | - name: Capture Fabric build artifact |
31 | | - uses: actions/upload-artifact@v4 |
| 30 | + uses: actions/upload-artifact@v7 |
32 | 31 | with: |
33 | 32 | name: "Make Bubbles Pop Fabric 1.20.5-1.21.1 (Unzip Me)" |
34 | 33 | path: fabric/build/libs/make_bubbles_pop-*.jar |
35 | 34 | - name: Capture Forge build artifact |
36 | | - uses: actions/upload-artifact@v4 |
| 35 | + uses: actions/upload-artifact@v7 |
37 | 36 | with: |
38 | 37 | name: "Make Bubbles Pop Forge 1.20.5-1.21.1 (Unzip Me)" |
39 | 38 | path: forge/build/libs/make_bubbles_pop-*.jar |
40 | 39 | - name: Capture NeoForge build artifact |
41 | | - uses: actions/upload-artifact@v4 |
| 40 | + uses: actions/upload-artifact@v7 |
42 | 41 | with: |
43 | 42 | name: "Make Bubbles Pop NeoForge 1.21-1.21.1 (Unzip Me)" |
44 | 43 | path: neoforge/build/libs/make_bubbles_pop-*.jar |
|
55 | 54 | **${{ github.event.repository.name }}** built successfully! [See changes since last release](https://github.com/${{ github.repository }}/blob/${{ github.sha }}/CHANGES.md). |
56 | 55 |
|
57 | 56 | [Download artifacts via nightly.link](https://nightly.link/${{ github.repository }}/actions/runs/${{ github.run_id }}) |
58 | | - |
| 57 | +
|
59 | 58 | EOF |
0 commit comments