Skip to content

Commit 67018ae

Browse files
committed
Update CICD
1 parent 42ded54 commit 67018ae

File tree

10 files changed

+9
-74
lines changed

10 files changed

+9
-74
lines changed

.github/workflows/build_and_test.yml

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

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

.github/workflows/format_java.yml

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,6 @@
22
name: Java Formatting
33

44
on:
5-
push:
6-
branches:
7-
- master
8-
paths: ['src/main/java/**', 'src/test/**']
95
pull_request:
106
paths: ['src/main/java/**', 'src/test/**']
117

@@ -24,7 +20,7 @@ jobs:
2420

2521
steps:
2622
- name: Checkout Repository
27-
uses: actions/checkout@v5
23+
uses: actions/checkout@v6
2824
with:
2925
ref: ${{ github.head_ref }}
3026

.github/workflows/publish.yml

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

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

4747
- name: Check if tag already exists
4848
run: |

.github/workflows/rebase.yml

Lines changed: 0 additions & 30 deletions
This file was deleted.

.github/workflows/test_java.yml

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,6 @@
22
name: Java Tests
33

44
on:
5-
push:
6-
branches:
7-
- master
85
pull_request:
96
branches:
107
- '*'
@@ -20,7 +17,7 @@ jobs:
2017

2118
steps:
2219
- name: Checkout Repository
23-
uses: actions/checkout@v5
20+
uses: actions/checkout@v6
2421

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

.github/workflows/update_buildscript.yml

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

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

2424
- name: Setup Build
2525
uses: ./.github/actions/build_setup
@@ -35,7 +35,7 @@ jobs:
3535
3636
- name: Create Pull Request
3737
id: create-pull-request
38-
uses: peter-evans/create-pull-request@v6
38+
uses: peter-evans/create-pull-request@v7
3939
env:
4040
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
4141
with:

.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@v5
22+
uses: actions/checkout@v6
2323

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

.github/workflows/validate_gradle_wrapper.yml

Lines changed: 0 additions & 29 deletions
This file was deleted.

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# 2.5.4
22
- Fix DraconicEvolution mod OreDictionary [#341](https://github.com/GTModpackTeam/GTExpert-Core/pull/341)
33

4-
* * *
4+
* * *
55

66
# 2.5.3
77
- Fix QuarkTechSuiteMixin [#340](https://github.com/GTModpackTeam/GTExpert-Core/pull/340)

dependencies.gradle

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -138,6 +138,7 @@ dependencies {
138138
compileOnly rfg.deobf("curse.maven:chisel-235279:2915375")
139139
if (project.debug_all.toBoolean() || project.debug_chisel.toBoolean()) {
140140
runtimeOnly rfg.deobf("curse.maven:chisel-235279:2915375")
141+
runtimeOnly rfg.deobf("curse.maven:ctm-267602:2915363") // CTM 1.0.2.31
141142
}
142143

143144
// Debug GTFO: 1.12.5

0 commit comments

Comments
 (0)