Skip to content

Commit 3a9322a

Browse files
committed
Fix workflows
1 parent 139f07a commit 3a9322a

File tree

5 files changed

+18
-10
lines changed

5 files changed

+18
-10
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: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
statuses: write
3333

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

3838
permissions:
@@ -52,7 +52,7 @@ jobs:
5252
contents: write
5353
pull-requests: write
5454
statuses: write
55-
55+
5656
other_testing:
5757
name: '🐞 Other'
5858
uses: ./.github/workflows/other_testing.yml
@@ -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)