Skip to content

Commit 9459525

Browse files
committed
Fix workflows
1 parent 139f07a commit 9459525

File tree

5 files changed

+21
-13
lines changed

5 files changed

+21
-13
lines changed

.github/workflows/generation_testing.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ concurrency:
1313
jobs:
1414
generate_test:
1515
name: Tests
16-
runs-on: 'ubuntu-22.04'
16+
runs-on: 'ubuntu-24.04'
1717
timeout-minutes: 10 # The overall timeout
1818
permissions:
1919
actions: write
@@ -24,7 +24,7 @@ jobs:
2424

2525
steps:
2626
# checkout your repository
27-
- uses: actions/checkout@v4
27+
- uses: actions/checkout@v5
2828
with:
2929
lfs: true
3030
# run tests by using the gdUnit4-action with Godot version 4.2.1 and the latest GdUnit4 release
@@ -35,3 +35,4 @@ jobs:
3535
res://testing/generation
3636
timeout: 5
3737
publish-report: false
38+
report-name: generation-gdunit4

.github/workflows/nodes_testing.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ concurrency:
1313
jobs:
1414
warning_check:
1515
name: Tests
16-
runs-on: 'ubuntu-22.04'
16+
runs-on: 'ubuntu-24.04'
1717
timeout-minutes: 10 # The overall timeout
1818
permissions:
1919
actions: write
@@ -23,7 +23,10 @@ jobs:
2323
statuses: write
2424

2525
steps:
26-
26+
# checkout your repository
27+
- uses: actions/checkout@v4
28+
with:
29+
lfs: true
2730
# run tests by using the gdUnit4-action with Godot version 4.2.1 and the latest GdUnit4 release
2831
- uses: MikeSchulze/gdUnit4-action@v1.1.6
2932
with:
@@ -32,3 +35,4 @@ jobs:
3235
res://testing/graph_nodes
3336
timeout: 5
3437
publish-report: false
38+
report-name: nodes-gdunit4

.github/workflows/on-prs.yml

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
uses: ./.github/workflows/gdlint.yml
2222

2323
generation_testing:
24-
name: '🐞 Generation'
24+
name: '🐞 Generation Testing'
2525
uses: ./.github/workflows/generation_testing.yml
2626

2727
permissions:
@@ -32,7 +32,7 @@ jobs:
3232
statuses: write
3333

3434
nodes_testing:
35-
name: '🐞 Nodes'
35+
name: '🐞 Node Testing'
3636
uses: ./.github/workflows/nodes_testing.yml
3737

3838
permissions:
@@ -43,7 +43,7 @@ jobs:
4343
statuses: write
4444

4545
renderers_testing:
46-
name: '🐞 Renderers'
46+
name: '🐞 Renderers Testing'
4747
uses: ./.github/workflows/renderers_testing.yml
4848

4949
permissions:
@@ -52,9 +52,9 @@ jobs:
5252
contents: write
5353
pull-requests: write
5454
statuses: write
55-
55+
5656
other_testing:
57-
name: '🐞 Other'
57+
name: '🐞 Other Testing'
5858
uses: ./.github/workflows/other_testing.yml
5959

6060
permissions:
@@ -63,4 +63,5 @@ jobs:
6363
contents: write
6464
pull-requests: write
6565
statuses: write
66+
6667

.github/workflows/other_testing.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ concurrency:
1313
jobs:
1414
warning_check:
1515
name: Tests
16-
runs-on: 'ubuntu-22.04'
16+
runs-on: 'ubuntu-24.04'
1717
timeout-minutes: 10 # The overall timeout
1818
permissions:
1919
actions: write
@@ -24,7 +24,7 @@ jobs:
2424

2525
steps:
2626
# checkout your repository
27-
- uses: actions/checkout@v4
27+
- uses: actions/checkout@v5
2828
with:
2929
lfs: true
3030
# run tests by using the gdUnit4-action with Godot version 4.2.1 and the latest GdUnit4 release
@@ -35,3 +35,4 @@ jobs:
3535
res://testing/other
3636
timeout: 5
3737
publish-report: false
38+
report-name: other-gdunit4

.github/workflows/renderers_testing.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ concurrency:
1313
jobs:
1414
warning_check:
1515
name: Tests
16-
runs-on: 'ubuntu-22.04'
16+
runs-on: 'ubuntu-24.04'
1717
timeout-minutes: 10 # The overall timeout
1818
permissions:
1919
actions: write
@@ -24,7 +24,7 @@ jobs:
2424

2525
steps:
2626
# checkout your repository
27-
- uses: actions/checkout@v4
27+
- uses: actions/checkout@v5
2828
with:
2929
lfs: true
3030
# run tests by using the gdUnit4-action with Godot version 4.2.1 and the latest GdUnit4 release
@@ -35,3 +35,4 @@ jobs:
3535
res://testing/rendering
3636
timeout: 5
3737
publish-report: false
38+
report-name: rendering-gdunit4

0 commit comments

Comments
 (0)