Skip to content

Commit 78f0f4d

Browse files
authored
use ubuntu-22.04 to prevent failed disk clean (#275)
1 parent 36ad0e1 commit 78f0f4d

File tree

9 files changed

+14
-14
lines changed

9 files changed

+14
-14
lines changed

.github/workflows/chart-test.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ on:
2525

2626
jobs:
2727
lint-test:
28-
runs-on: ubuntu-latest
28+
runs-on: ubuntu-22.04
2929
outputs:
3030
changed: ${{ steps.list-changed.outputs.changed }}
3131
chart_name: ${{ steps.list-changed.outputs.chart_name }}
@@ -98,7 +98,7 @@ jobs:
9898
if: failure()
9999

100100
install-on-v1-26:
101-
runs-on: ubuntu-latest
101+
runs-on: ubuntu-22.04
102102
needs: lint-test
103103
steps:
104104
- name: Checkout
@@ -148,7 +148,7 @@ jobs:
148148
if: failure()
149149

150150
install-on-v1-27:
151-
runs-on: ubuntu-latest
151+
runs-on: ubuntu-22.04
152152
needs: lint-test
153153
steps:
154154
- name: Checkout
@@ -198,7 +198,7 @@ jobs:
198198
if: failure()
199199

200200
install-on-v1-28:
201-
runs-on: ubuntu-latest
201+
runs-on: ubuntu-22.04
202202
needs: lint-test
203203
steps:
204204
- name: Checkout
@@ -248,7 +248,7 @@ jobs:
248248
if: failure()
249249

250250
install-on-v1-29:
251-
runs-on: ubuntu-latest
251+
runs-on: ubuntu-22.04
252252
needs: lint-test
253253
steps:
254254
- name: Checkout

.github/workflows/check-license-header.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ on:
2323
jobs:
2424
license-check:
2525
name: check license header
26-
runs-on: ubuntu-latest
26+
runs-on: ubuntu-22.04
2727
steps:
2828
- uses: actions/checkout@v3
2929

.github/workflows/documentbot.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434
if: ${{ github.repository == 'streamnative/pulsar-resources-operator' }}
3535
permissions:
3636
pull-requests: write
37-
runs-on: ubuntu-latest
37+
runs-on: ubuntu-22.04
3838
steps:
3939
- uses: streamnative/github-workflow-libraries/doc-label-check@master
4040
with:

.github/workflows/e2e_test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
strategy:
2828
matrix:
2929
alwaysUpdatePulsar: [ "true", "false" ]
30-
runs-on: ubuntu-latest
30+
runs-on: ubuntu-22.04
3131
env:
3232
ALWAYS_UPDATE_PULSAR_RESOURCE: ${{ matrix.alwaysUpdatePulsar }}
3333
GOPRIVATE: github.com/streamnative

.github/workflows/golangci-lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ permissions:
2828
jobs:
2929
golangci:
3030
name: lint
31-
runs-on: ubuntu-latest
31+
runs-on: ubuntu-22.04
3232
env:
3333
ACCESS_TOKEN: ${{ secrets.ACCESS_TOKEN }}
3434
GOPRIVATE: github.com/streamnative

.github/workflows/release-certificated-olm.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ on:
3131
jobs:
3232
operatorhub-prod:
3333
name: Create PR to the redhat
34-
runs-on: ubuntu-latest
34+
runs-on: ubuntu-22.04
3535
env:
3636
GITHUB_TOKEN: ${{ secrets.SNBOT_GITHUB_TOKEN }}
3737
GOPRIVATE: github.com/streamnative

.github/workflows/release-community-olm.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ on:
3131
jobs:
3232
operatorhub:
3333
name: Create PR to the operatorhub
34-
runs-on: ubuntu-latest
34+
runs-on: ubuntu-22.04
3535
env:
3636
GITHUB_TOKEN: ${{ secrets.SNBOT_GITHUB_TOKEN }}
3737
GOPRIVATE: github.com/streamnative

.github/workflows/release-operator.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ on:
2222
jobs:
2323
build:
2424
name: Build image and bundle
25-
runs-on: ubuntu-latest
25+
runs-on: ubuntu-22.04
2626
env:
2727
GOPRIVATE: github.com/streamnative
2828
ACCESS_TOKEN: ${{ secrets.ACCESS_TOKEN }}
@@ -112,7 +112,7 @@ jobs:
112112
operatorhub:
113113
name: Create PR to the operatorhub
114114
needs: build
115-
runs-on: ubuntu-latest
115+
runs-on: ubuntu-22.04
116116
steps:
117117
- name: Sync up the upstream
118118
env:

.github/workflows/style.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626

2727
build:
2828
name: Build
29-
runs-on: ubuntu-latest
29+
runs-on: ubuntu-22.04
3030
env:
3131
ACCESS_TOKEN: ${{ secrets.ACCESS_TOKEN }}
3232
GOPRIVATE: github.com/streamnative

0 commit comments

Comments
 (0)