File tree Expand file tree Collapse file tree 5 files changed +10
-10
lines changed
Expand file tree Collapse file tree 5 files changed +10
-10
lines changed Original file line number Diff line number Diff line change 1818 # The main gotchas with this action are that it _only_ supports merge commits,
1919 # and that PRs _must_ be labelled before they're merged to trigger a backport.
2020 open-pr :
21- runs-on : ubuntu-20 .04
21+ runs-on : ubuntu-22 .04
2222 if : github.event.pull_request.merged
2323 steps :
2424 - name : Checkout
Original file line number Diff line number Diff line change 1515
1616jobs :
1717 check-diff :
18- runs-on : ubuntu-20 .04
18+ runs-on : ubuntu-22 .04
1919
2020 steps :
2121 - name : Checkout
5353 run : make check-diff
5454
5555 detect-noop :
56- runs-on : ubuntu-20 .04
56+ runs-on : ubuntu-22 .04
5757 outputs :
5858 noop : ${{ steps.noop.outputs.should_skip }}
5959 steps :
6767 concurrent_skipping : false
6868
6969 lint :
70- runs-on : ubuntu-20 .04
70+ runs-on : ubuntu-22 .04
7171 needs : detect-noop
7272 if : needs.detect-noop.outputs.noop != 'true'
7373
@@ -113,7 +113,7 @@ jobs:
113113 skip-cache : true # We do our own caching.
114114
115115 codeql :
116- runs-on : ubuntu-20 .04
116+ runs-on : ubuntu-22 .04
117117 needs : detect-noop
118118 if : needs.detect-noop.outputs.noop != 'true'
119119
@@ -178,7 +178,7 @@ jobs:
178178 severity : ' CRITICAL,HIGH'
179179
180180 unit-tests :
181- runs-on : ubuntu-20 .04
181+ runs-on : ubuntu-22 .04
182182 needs : detect-noop
183183 if : needs.detect-noop.outputs.noop != 'true'
184184
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ on: issue_comment
44
55jobs :
66 points :
7- runs-on : ubuntu-20 .04
7+ runs-on : ubuntu-22 .04
88 if : startsWith(github.event.comment.body, '/points')
99
1010 steps :
6565 # NOTE(negz): See also backport.yml, which is the variant that triggers on PR
6666 # merge rather than on comment.
6767 backport :
68- runs-on : ubuntu-20 .04
68+ runs-on : ubuntu-22 .04
6969 if : github.event.issue.pull_request && startsWith(github.event.comment.body, '/backport')
7070 steps :
7171 - name : Extract Command
Original file line number Diff line number Diff line change 2020
2121jobs :
2222 promote-artifacts :
23- runs-on : ubuntu-20 .04
23+ runs-on : ubuntu-22 .04
2424
2525 steps :
2626 - name : Checkout
Original file line number Diff line number Diff line change 1212
1313jobs :
1414 create-tag :
15- runs-on : ubuntu-20 .04
15+ runs-on : ubuntu-22 .04
1616
1717 steps :
1818 - name : Checkout
You can’t perform that action at this time.
0 commit comments