File tree 2 files changed +5
-5
lines changed
2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 46
46
# If you want to modify CI jobs, take a look at src/ci/github-actions/jobs.yml.
47
47
calculate_matrix :
48
48
name : Calculate job matrix
49
- runs-on : ubuntu-latest
49
+ runs-on : ubuntu-24.04
50
50
outputs :
51
51
jobs : ${{ steps.jobs.outputs.jobs }}
52
52
run_type : ${{ steps.jobs.outputs.run_type }}
@@ -243,7 +243,7 @@ jobs:
243
243
# when a workflow is successful listening to webhooks only in our current bors implementation (homu).
244
244
outcome :
245
245
name : bors build finished
246
- runs-on : ubuntu-latest
246
+ runs-on : ubuntu-24.04
247
247
needs : [ calculate_matrix, job ]
248
248
# !cancelled() executes the job regardless of whether the previous jobs passed or failed
249
249
if : ${{ !cancelled() && contains(fromJSON('["auto", "try"]'), needs.calculate_matrix.outputs.run_type) }}
Original file line number Diff line number Diff line change 27
27
not-waiting-on-bors :
28
28
if : github.repository_owner == 'rust-lang'
29
29
name : skip if S-waiting-on-bors
30
- runs-on : ubuntu-latest
30
+ runs-on : ubuntu-24.04
31
31
steps :
32
32
- env :
33
33
GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
47
47
if : github.repository_owner == 'rust-lang'
48
48
name : update dependencies
49
49
needs : not-waiting-on-bors
50
- runs-on : ubuntu-latest
50
+ runs-on : ubuntu-24.04
51
51
steps :
52
52
- name : checkout the source code
53
53
uses : actions/checkout@v4
94
94
if : github.repository_owner == 'rust-lang'
95
95
name : amend PR
96
96
needs : update
97
- runs-on : ubuntu-latest
97
+ runs-on : ubuntu-24.04
98
98
permissions :
99
99
contents : write
100
100
pull-requests : write
You can’t perform that action at this time.
0 commit comments