This is an automated email from the ASF dual-hosted git repository.

dockerzhang pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/inlong.git


The following commit(s) were added to refs/heads/master by this push:
     new 13033d279 [INLONG-6879][CI] Use ubuntu-22.04 to replace ubuntu-latest 
for workflows (#6880)
13033d279 is described below

commit 13033d2792eeacdf51ef1f04e855f1a7a4ad1348
Author: Charles Zhang <[email protected]>
AuthorDate: Wed Dec 14 19:23:55 2022 +0800

    [INLONG-6879][CI] Use ubuntu-22.04 to replace ubuntu-latest for workflows 
(#6880)
---
 .github/workflows/ci_build.yml          | 2 +-
 .github/workflows/ci_chart_test.yml     | 2 +-
 .github/workflows/ci_check_format.yml   | 2 +-
 .github/workflows/ci_check_license.yml  | 2 +-
 .github/workflows/ci_check_pr_title.yml | 2 +-
 .github/workflows/ci_docker.yml         | 2 +-
 .github/workflows/ci_greeting.yml       | 2 +-
 .github/workflows/ci_labeler.yml        | 2 +-
 .github/workflows/ci_stale.yml          | 2 +-
 .github/workflows/ci_ut.yml             | 2 +-
 .github/workflows/codeql_analysis.yml   | 2 +-
 11 files changed, 11 insertions(+), 11 deletions(-)

diff --git a/.github/workflows/ci_build.yml b/.github/workflows/ci_build.yml
index 2d73eba6a..d9cee1851 100644
--- a/.github/workflows/ci_build.yml
+++ b/.github/workflows/ci_build.yml
@@ -55,7 +55,7 @@ on:
 jobs:
   build:
     name: Build
-    runs-on: ubuntu-latest
+    runs-on: ubuntu-22.04
     steps:
       - name: Checkout
         uses: actions/checkout@v3
diff --git a/.github/workflows/ci_chart_test.yml 
b/.github/workflows/ci_chart_test.yml
index fa92911a7..9633b68c1 100644
--- a/.github/workflows/ci_chart_test.yml
+++ b/.github/workflows/ci_chart_test.yml
@@ -43,7 +43,7 @@ env:
 jobs:
   chart-test:
     name: Lint and test charts
-    runs-on: ubuntu-latest
+    runs-on: ubuntu-22.04
     strategy:
       matrix:
         kubernetes-version:
diff --git a/.github/workflows/ci_check_format.yml 
b/.github/workflows/ci_check_format.yml
index acacb9070..8d172646b 100644
--- a/.github/workflows/ci_check_format.yml
+++ b/.github/workflows/ci_check_format.yml
@@ -22,7 +22,7 @@ on: [ push, pull_request ]
 jobs:
   build:
     name: Code Format Check
-    runs-on: ubuntu-latest
+    runs-on: ubuntu-22.04
     steps:
       - name: Checkout
         uses: actions/checkout@v3
diff --git a/.github/workflows/ci_check_license.yml 
b/.github/workflows/ci_check_license.yml
index 64846918f..318c829d0 100644
--- a/.github/workflows/ci_check_license.yml
+++ b/.github/workflows/ci_check_license.yml
@@ -22,7 +22,7 @@ on: [ push, pull_request ]
 jobs:
   check-license:
     name: Check license header
-    runs-on: ubuntu-latest
+    runs-on: ubuntu-22.04
     steps:
       - name: Checkout
         uses: actions/checkout@v3
diff --git a/.github/workflows/ci_check_pr_title.yml 
b/.github/workflows/ci_check_pr_title.yml
index ca10b4d8d..1a17faf9e 100644
--- a/.github/workflows/ci_check_pr_title.yml
+++ b/.github/workflows/ci_check_pr_title.yml
@@ -28,7 +28,7 @@ on:
 jobs:
   check:
     name: Check pull request title
-    runs-on: ubuntu-latest
+    runs-on: ubuntu-22.04
     steps:
       - name: Checkout
         uses: actions/checkout@v3
diff --git a/.github/workflows/ci_docker.yml b/.github/workflows/ci_docker.yml
index 433194b60..6b52d33da 100644
--- a/.github/workflows/ci_docker.yml
+++ b/.github/workflows/ci_docker.yml
@@ -49,7 +49,7 @@ on:
 jobs:
   docker:
     name: Docker build and push
-    runs-on: ubuntu-latest
+    runs-on: ubuntu-22.04
     steps:
       - name: Maximize build space
         uses: easimon/maximize-build-space@master
diff --git a/.github/workflows/ci_greeting.yml 
b/.github/workflows/ci_greeting.yml
index f221e52a7..27781d8d3 100644
--- a/.github/workflows/ci_greeting.yml
+++ b/.github/workflows/ci_greeting.yml
@@ -28,7 +28,7 @@ on:
 jobs:
   greeting:
     name: Greeting
-    runs-on: ubuntu-latest
+    runs-on: ubuntu-22.04
     permissions:
       issues: write
       pull-requests: write
diff --git a/.github/workflows/ci_labeler.yml b/.github/workflows/ci_labeler.yml
index 2d0cbd579..cf17e88f6 100644
--- a/.github/workflows/ci_labeler.yml
+++ b/.github/workflows/ci_labeler.yml
@@ -22,7 +22,7 @@ on: pull_request_target
 jobs:
   label:
     name: Label
-    runs-on: ubuntu-latest
+    runs-on: ubuntu-22.04
     steps:
       - name: Label the PR
         uses: actions/labeler@v4
diff --git a/.github/workflows/ci_stale.yml b/.github/workflows/ci_stale.yml
index d98890d6b..916e04c27 100644
--- a/.github/workflows/ci_stale.yml
+++ b/.github/workflows/ci_stale.yml
@@ -24,7 +24,7 @@ on:
 jobs:
   stale:
     name: Stale
-    runs-on: ubuntu-latest
+    runs-on: ubuntu-22.04
     permissions:
       issues: write
       pull-requests: write
diff --git a/.github/workflows/ci_ut.yml b/.github/workflows/ci_ut.yml
index 924bc6523..9c59c7ea0 100644
--- a/.github/workflows/ci_ut.yml
+++ b/.github/workflows/ci_ut.yml
@@ -55,7 +55,7 @@ on:
 jobs:
   unit-test:
     name: Unit Test
-    runs-on: ubuntu-latest
+    runs-on: ubuntu-22.04
     steps:
       - name: Checkout
         uses: actions/checkout@v3
diff --git a/.github/workflows/codeql_analysis.yml 
b/.github/workflows/codeql_analysis.yml
index 7c1ee6d21..ca7d64461 100644
--- a/.github/workflows/codeql_analysis.yml
+++ b/.github/workflows/codeql_analysis.yml
@@ -22,7 +22,7 @@ on: [ push, pull_request ]
 jobs:
   analyze:
     name: Analyze by CodeQL
-    runs-on: ubuntu-latest
+    runs-on: ubuntu-22.04
     permissions:
       actions: read
       contents: read

Reply via email to