File tree Expand file tree Collapse file tree 1 file changed +9
-5
lines changed Expand file tree Collapse file tree 1 file changed +9
-5
lines changed Original file line number Diff line number Diff line change @@ -22,7 +22,7 @@ concurrency:
22
22
23
23
jobs :
24
24
setup :
25
- runs-on : ubuntu-25.04
25
+ runs-on : ubuntu-latest
26
26
steps :
27
27
- uses : actions/checkout@v4
28
28
64
64
retention-days : 1
65
65
66
66
verify :
67
- runs-on : ubuntu-25.04
67
+ runs-on : ubuntu-latest
68
68
needs : [setup]
69
69
env :
70
70
SPLIT_SIZE : " 20"
96
96
uses : adamant-pwn/actions/setup@patch-1
97
97
with :
98
98
cache-pip : true
99
-
99
+ - name : Use GCC 14.2
100
+ run : |
101
+ sudo update-alternatives --install /usr/bin/g++ g++ /usr/bin/g++-14 100
102
+ sudo update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-14 100
103
+ g++ --version
100
104
- name : Verify
101
105
uses : competitive-verifier/actions/verify@v2
102
106
with :
@@ -114,7 +118,7 @@ jobs:
114
118
retention-days : 1
115
119
116
120
docs-and-check :
117
- runs-on : ubuntu-25.04
121
+ runs-on : ubuntu-latest
118
122
needs : [verify]
119
123
outputs :
120
124
upload-pages : ${{steps.upload-pages.outcome == 'success'}}
@@ -188,7 +192,7 @@ jobs:
188
192
environment :
189
193
name : github-pages
190
194
url : ${{ steps.deployment.outputs.page_url }}
191
- runs-on : ubuntu-25.04
195
+ runs-on : ubuntu-latest
192
196
steps :
193
197
- name : Deploy to GitHub Pages
194
198
id : deployment
You can’t perform that action at this time.
0 commit comments