Skip to content

Commit aafa154

Browse files
committed
chore(deps): update dependency ubuntu to v24
1 parent 9818cd9 commit aafa154

File tree

4 files changed

+9
-9
lines changed

4 files changed

+9
-9
lines changed

.github/workflows/backport.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
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

.github/workflows/ci.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ env:
2121

2222
jobs:
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:
@@ -35,7 +35,7 @@ jobs:
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

@@ -79,7 +79,7 @@ jobs:
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

.github/workflows/commands.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ on: issue_comment
44

55
jobs:
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

.github/workflows/tag.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ on:
1212

1313
jobs:
1414
create-tag:
15-
runs-on: ubuntu-22.04
15+
runs-on: ubuntu-24.04
1616

1717
steps:
1818
- name: Checkout

0 commit comments

Comments
 (0)