File tree Expand file tree Collapse file tree 4 files changed +9
-9
lines changed Expand file tree Collapse file tree 4 files changed +9
-9
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-22 .04
21+ runs-on : ubuntu-24 .04
2222 if : github.event.pull_request.merged
2323 steps :
2424 - name : Checkout
Original file line number Diff line number Diff line change 2121
2222jobs :
2323 detect-noop :
24- runs-on : ubuntu-22 .04
24+ runs-on : ubuntu-24 .04
2525 outputs :
2626 noop : ${{ steps.noop.outputs.should_skip }}
2727 steps :
3535
3636
3737 lint :
38- runs-on : ubuntu-22 .04
38+ runs-on : ubuntu-24 .04
3939 needs : detect-noop
4040 if : needs.detect-noop.outputs.noop != 'true'
4141
7979 version : ${{ env.GOLANGCI_VERSION }}
8080
8181 check-diff :
82- runs-on : ubuntu-22 .04
82+ runs-on : ubuntu-24 .04
8383 needs : detect-noop
8484 if : needs.detect-noop.outputs.noop != 'true'
8585
@@ -122,7 +122,7 @@ jobs:
122122 run : make check-diff
123123
124124 unit-tests :
125- runs-on : ubuntu-22 .04
125+ runs-on : ubuntu-24 .04
126126 needs : detect-noop
127127 if : needs.detect-noop.outputs.noop != 'true'
128128
@@ -171,7 +171,7 @@ jobs:
171171 file : _output/tests/linux_amd64/coverage.txt
172172
173173 local-deploy :
174- runs-on : ubuntu-22 .04
174+ runs-on : ubuntu-24 .04
175175 needs : detect-noop
176176 if : needs.detect-noop.outputs.noop != 'true'
177177
@@ -214,7 +214,7 @@ jobs:
214214 run : make local-deploy
215215
216216 publish-artifacts :
217- runs-on : ubuntu-22 .04
217+ runs-on : ubuntu-24 .04
218218 needs : detect-noop
219219 if : needs.detect-noop.outputs.noop != 'true'
220220
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ on: issue_comment
44
55jobs :
66 backport :
7- runs-on : ubuntu-22 .04
7+ runs-on : ubuntu-24 .04
88 if : github.event.issue.pull_request && startsWith(github.event.comment.body, '/backport')
99 steps :
1010 - name : Extract Command
Original file line number Diff line number Diff line change 1212
1313jobs :
1414 create-tag :
15- runs-on : ubuntu-22 .04
15+ runs-on : ubuntu-24 .04
1616
1717 steps :
1818 - name : Checkout
You can’t perform that action at this time.
0 commit comments