Skip to content

Commit 586795e

Browse files
authored
Update test result reporting to use latest ubuntu (#1291)
While the builds have been running, for a few months the job that collates the results and reports them hasn't run due to Ubuntu 20.04 EOL on GitHub actions (actions/runner-images#11101) Fixes the lack of reporting part of #1290
1 parent 428e3f7 commit 586795e

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/build-test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ on: [push, pull_request]
55
jobs:
66
build:
77

8-
runs-on: ubuntu-24.04
8+
runs-on: ubuntu-latest
99
timeout-minutes: 120
1010

1111
steps:

.github/workflows/report.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ on:
99
jobs:
1010
unit-test-results:
1111
name: Unit Test Results
12-
runs-on: ubuntu-20.04
12+
runs-on: ubuntu-24.04
1313
if: github.event.workflow_run.conclusion != 'skipped'
1414

1515
steps:

0 commit comments

Comments
 (0)