Skip to content

Commit adc70f3

Browse files
authored
chore: upgrade ubuntu from 20.04 to latest (#2352)
1 parent 4b089a3 commit adc70f3

File tree

4 files changed

+16
-16
lines changed

4 files changed

+16
-16
lines changed

.github/workflows/e2e-test-ci-v2-cron-dev.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ concurrency:
3434
jobs:
3535
changes:
3636
if: ${{ (!github.event.pull_request.draft && github.event.schedule == '0 0 * * *') }}
37-
runs-on: ubuntu-20.04
37+
runs-on: ubuntu-latest
3838
outputs:
3939
docs: ${{ steps.filter.outputs.docs }}
4040
go: ${{ steps.filter.outputs.go }}
@@ -65,7 +65,7 @@ jobs:
6565
- ".github/**"
6666
build:
6767
name: Build
68-
runs-on: ubuntu-20.04
68+
runs-on: ubuntu-latest
6969
needs: changes
7070
if: needs.changes.outputs.go == 'true'
7171

@@ -128,7 +128,7 @@ jobs:
128128
prepare:
129129
needs: changes
130130
if: needs.changes.outputs.go == 'true'
131-
runs-on: ubuntu-20.04
131+
runs-on: ubuntu-latest
132132
steps:
133133
- uses: actions/checkout@v4
134134
with:
@@ -151,7 +151,7 @@ jobs:
151151
- changes
152152
- prepare
153153
- build
154-
runs-on: ubuntu-20.04
154+
runs-on: ubuntu-latest
155155
strategy:
156156
fail-fast: false # If false, GitHub will not cancels all in-progress jobs in the matrix if any matrix job fails.
157157
matrix:

.github/workflows/e2e-test-ci-v2-cron.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ concurrency:
3333
jobs:
3434
changes:
3535
if: ${{ (!github.event.pull_request.draft && contains(github.event.pull_request.labels.*.name, 'area/test/apiv2')) || github.event.schedule == '0 0 * * *' }}
36-
runs-on: ubuntu-20.04
36+
runs-on: ubuntu-latest
3737
outputs:
3838
docs: ${{ steps.filter.outputs.docs }}
3939
go: ${{ steps.filter.outputs.go }}
@@ -64,7 +64,7 @@ jobs:
6464
- ".github/**"
6565
build:
6666
name: Build
67-
runs-on: ubuntu-20.04
67+
runs-on: ubuntu-latest
6868
needs: changes
6969
if: needs.changes.outputs.go == 'true'
7070

@@ -127,7 +127,7 @@ jobs:
127127
prepare:
128128
needs: changes
129129
if: needs.changes.outputs.go == 'true'
130-
runs-on: ubuntu-20.04
130+
runs-on: ubuntu-latest
131131
steps:
132132
- uses: actions/checkout@v4
133133
with:
@@ -150,7 +150,7 @@ jobs:
150150
- changes
151151
- prepare
152152
- build
153-
runs-on: ubuntu-20.04
153+
runs-on: ubuntu-latest
154154
strategy:
155155
fail-fast: false # If false, GitHub will not cancels all in-progress jobs in the matrix if any matrix job fails.
156156
matrix:

.github/workflows/e2e-test-ci.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ concurrency:
3333

3434
jobs:
3535
changes:
36-
runs-on: ubuntu-20.04
36+
runs-on: ubuntu-latest
3737
outputs:
3838
docs: ${{ steps.filter.outputs.docs }}
3939
go: ${{ steps.filter.outputs.go }}
@@ -64,7 +64,7 @@ jobs:
6464
- ".github/**"
6565
build:
6666
name: Build
67-
runs-on: ubuntu-20.04
67+
runs-on: ubuntu-latest
6868
needs: changes
6969
if: needs.changes.outputs.go == 'true'
7070

@@ -128,7 +128,7 @@ jobs:
128128
prepare:
129129
needs: changes
130130
if: needs.changes.outputs.go == 'true'
131-
runs-on: ubuntu-20.04
131+
runs-on: ubuntu-latest
132132
steps:
133133
- uses: actions/checkout@v4
134134
with:
@@ -151,7 +151,7 @@ jobs:
151151
- changes
152152
- prepare
153153
- build
154-
runs-on: ubuntu-20.04
154+
runs-on: ubuntu-latest
155155
strategy:
156156
fail-fast: false # If false, GitHub will not cancels all in-progress jobs in the matrix if any matrix job fails.
157157
matrix:

.github/workflows/k8s-timer-ci.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ on:
2626

2727
jobs:
2828
changes:
29-
runs-on: ubuntu-20.04
29+
runs-on: ubuntu-latest
3030
outputs:
3131
docs: ${{ steps.filter.outputs.docs }}
3232
go: ${{ steps.filter.outputs.go }}
@@ -56,7 +56,7 @@ jobs:
5656
- 'utils/**'
5757
build:
5858
name: Build
59-
runs-on: ubuntu-20.04
59+
runs-on: ubuntu-latest
6060
needs: changes
6161

6262
steps:
@@ -117,7 +117,7 @@ jobs:
117117
prepare:
118118
needs: changes
119119
if: needs.changes.outputs.go == 'true'
120-
runs-on: ubuntu-20.04
120+
runs-on: ubuntu-latest
121121
steps:
122122
- uses: actions/checkout@v4
123123
with:
@@ -131,7 +131,7 @@ jobs:
131131
- changes
132132
- prepare
133133
- build
134-
runs-on: ubuntu-20.04
134+
runs-on: ubuntu-latest
135135
strategy:
136136
fail-fast: false # If false, GitHub will not cancels all in-progress jobs in the matrix if any matrix job fails.
137137
matrix:

0 commit comments

Comments
 (0)