Skip to content

Commit 97e759d

Browse files
authored
Merge pull request #509 from crossplane/renovate/ubuntu-22.x
Update dependency ubuntu to v22
2 parents ad3bf67 + d266d45 commit 97e759d

File tree

5 files changed

+10
-10
lines changed

5 files changed

+10
-10
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-20.04
21+
runs-on: ubuntu-22.04
2222
if: github.event.pull_request.merged
2323
steps:
2424
- name: Checkout

.github/workflows/ci.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ env:
1515

1616
jobs:
1717
check-diff:
18-
runs-on: ubuntu-20.04
18+
runs-on: ubuntu-22.04
1919

2020
steps:
2121
- name: Checkout
@@ -53,7 +53,7 @@ jobs:
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:
@@ -67,7 +67,7 @@ jobs:
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

.github/workflows/commands.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ on: issue_comment
44

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

.github/workflows/promote.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ env:
2020

2121
jobs:
2222
promote-artifacts:
23-
runs-on: ubuntu-20.04
23+
runs-on: ubuntu-22.04
2424

2525
steps:
2626
- name: Checkout

.github/workflows/tag.yml

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-20.04
15+
runs-on: ubuntu-22.04
1616

1717
steps:
1818
- name: Checkout

0 commit comments

Comments
 (0)