Skip to content

Commit edb202a

Browse files
committed
Update cicd
1 parent 136f13c commit edb202a

File tree

9 files changed

+13
-12
lines changed

9 files changed

+13
-12
lines changed

.github/actions/build_setup/action.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ runs:
1212

1313
steps:
1414
- name: Set up JDK 8 and 17
15-
uses: actions/setup-java@v4
15+
uses: actions/setup-java@v5
1616
with:
1717
cache: gradle
1818
distribution: 'zulu'
@@ -21,7 +21,7 @@ runs:
2121
17
2222
2323
- name: Setup Gradle
24-
uses: gradle/actions/setup-gradle@v4
24+
uses: gradle/actions/setup-gradle@v5
2525
with:
2626
cache-write-only: ${{ inputs.update-cache }}
2727
gradle-home-cache-includes: |

.github/workflows/build_and_test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929

3030
steps:
3131
- name: Checkout Repository
32-
uses: actions/checkout@v4
32+
uses: actions/checkout@v5
3333
- name: Apply patch to gradle.properties
3434
run: sed -i 's/debug_all = false/debug_all = true/g' gradle.properties
3535

@@ -40,7 +40,7 @@ jobs:
4040
run: ./gradlew --info --scan --stacktrace assemble
4141

4242
- name: Upload Jars
43-
uses: actions/upload-artifact@v4
43+
uses: actions/upload-artifact@v5
4444
with:
4545
name: GTExpert-Core
4646
path: build/libs/*.jar

.github/workflows/format_java.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424

2525
steps:
2626
- name: Checkout Repository
27-
uses: actions/checkout@v4
27+
uses: actions/checkout@v5
2828
with:
2929
ref: ${{ github.head_ref }}
3030

.github/workflows/publish.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ jobs:
4242

4343
steps:
4444
- name: Checkout Repository
45-
uses: actions/checkout@v4
45+
uses: actions/checkout@v5
4646

4747
- name: Check if tag already exists
4848
run: |
@@ -55,7 +55,7 @@ jobs:
5555
run: sed -i "s/modVersion.*=.*/modVersion = ${{ env.FULL_VERSION }}/g" gradle.properties
5656

5757
- name: Commit and push gradle.properties
58-
uses: stefanzweifel/git-auto-commit-action@v5
58+
uses: stefanzweifel/git-auto-commit-action@v7
5959
with:
6060
commit_message: "Bump version to v${{ env.FULL_VERSION }}"
6161
commit_options: '--no-verify'

.github/workflows/rebase.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,10 +17,11 @@ jobs:
1717
)
1818
steps:
1919
- name: Checkout the latest code
20-
uses: actions/checkout@v4
20+
uses: actions/checkout@v5
2121
with:
2222
token: ${{ secrets.GITHUB_TOKEN }}
2323
fetch-depth: 0 # otherwise, you will fail to push refs to dest repo
24+
2425
- name: Automatic Rebase
2526
uses: cirrus-actions/[email protected]
2627
with:

.github/workflows/test_java.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020

2121
steps:
2222
- name: Checkout Repository
23-
uses: actions/checkout@v4
23+
uses: actions/checkout@v5
2424

2525
- name: Apply patch to build.gradle
2626
run: sed -i 's/debug_all = false/debug_all = true/g' gradle.properties

.github/workflows/update_buildscript.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919

2020
steps:
2121
- name: Checkout Repository
22-
uses: actions/checkout@v4
22+
uses: actions/checkout@v5
2323

2424
- name: Setup Build
2525
uses: ./.github/actions/build_setup

.github/workflows/update_gradle_cache.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919

2020
steps:
2121
- name: Checkout Repository
22-
uses: actions/checkout@v4
22+
uses: actions/checkout@v5
2323

2424
- name: Setup Build
2525
uses: ./.github/actions/build_setup

.github/workflows/validate_gradle_wrapper.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323

2424
steps:
2525
- name: Checkout Repository
26-
uses: actions/checkout@v4
26+
uses: actions/checkout@v5
2727

2828
- name: Validate Gradle Wrapper
2929
uses: gradle/actions/wrapper-validation@v4

0 commit comments

Comments
 (0)