This is an automated email from the ASF dual-hosted git repository.
bowenliang pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/kyuubi.git
The following commit(s) were added to refs/heads/master by this push:
new f6e7ef3d5 [KYUUBI #5774] [CI] Bump actions/checkout from v3 to v4
f6e7ef3d5 is described below
commit f6e7ef3d509778c10f6fbc528988c1fd3fb3e3fa
Author: liangbowen <[email protected]>
AuthorDate: Mon Nov 27 10:33:02 2023 +0800
[KYUUBI #5774] [CI] Bump actions/checkout from v3 to v4
# :mag: Description
## Issue References ๐
As described.
## Describe Your Solution ๐ง
Bump actions/checkout from v3 to v4
- v4.1.1 release notes:
https://github.com/actions/checkout/releases/tag/v4.1.1
- default Nodejs runtime for the action bumped from 16 to 20
## Types of changes :bookmark:
- [ ] Bugfix (non-breaking change which fixes an issue)
- [ ] New feature (non-breaking change which adds functionality)
- [ ] Breaking change (fix or feature that would cause existing
functionality to change)
## Test Plan ๐งช
#### Behavior Without This Pull Request :coffin:
No behavior changes.
#### Behavior With This Pull Request :tada:
No behavior changes.
#### Related Unit Tests
CI workflows.
---
# Checklists
## ๐ Author Self Checklist
- [x] My code follows the [style
guidelines](https://kyuubi.readthedocs.io/en/master/contributing/code/style.html)
of this project
- [x] I have performed a self-review
- [ ] I have commented my code, particularly in hard-to-understand areas
- [ ] I have made corresponding changes to the documentation
- [ ] My changes generate no new warnings
- [ ] I have added tests that prove my fix is effective or that my feature
works
- [ ] New and existing unit tests pass locally with my changes
- [x] This patch was not authored or co-authored using [Generative
Tooling](https://www.apache.org/legal/generative-tooling.html)
## ๐ Committer Pre-Merge Checklist
- [ ] Pull request title is okay.
- [ ] No license issues.
- [ ] Milestone correctly set?
- [ ] Test coverage is ok
- [ ] Assignees are selected.
- [ ] Minimum number of approvals
- [ ] No changes are requested
**Be nice. Be informative.**
Closes #5774 from bowenliang123/checkout-v4.
Closes #5774
c31edbffb [liangbowen] Bump actions/checkout from v3 to v4
Authored-by: liangbowen <[email protected]>
Signed-off-by: Bowen Liang <[email protected]>
---
.github/workflows/dep.yml | 2 +-
.github/workflows/docs.yml | 2 +-
.github/workflows/license.yml | 2 +-
.github/workflows/master.yml | 20 ++++++++++----------
.github/workflows/nightly.yml | 2 +-
.github/workflows/publish-snapshot-docker.yml | 2 +-
.github/workflows/publish-snapshot-nexus.yml | 2 +-
.github/workflows/style.yml | 4 ++--
.github/workflows/web-ui.yml | 2 +-
9 files changed, 19 insertions(+), 19 deletions(-)
diff --git a/.github/workflows/dep.yml b/.github/workflows/dep.yml
index f39e5e6a2..15231f471 100644
--- a/.github/workflows/dep.yml
+++ b/.github/workflows/dep.yml
@@ -36,7 +36,7 @@ jobs:
name: Dependency check
runs-on: ubuntu-22.04
steps:
- - uses: actions/checkout@v3
+ - uses: actions/checkout@v4
- name: setup java
uses: actions/setup-java@v3
with:
diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml
index 55cb6b8b1..804338abe 100644
--- a/.github/workflows/docs.yml
+++ b/.github/workflows/docs.yml
@@ -31,7 +31,7 @@ jobs:
name: sphinx-build
runs-on: ubuntu-22.04
steps:
- - uses: actions/checkout@v3
+ - uses: actions/checkout@v4
- uses: actions/setup-python@v4
with:
python-version: '3.9'
diff --git a/.github/workflows/license.yml b/.github/workflows/license.yml
index 55ef485f8..f2a1f5c09 100644
--- a/.github/workflows/license.yml
+++ b/.github/workflows/license.yml
@@ -34,7 +34,7 @@ jobs:
name: License
runs-on: ubuntu-22.04
steps:
- - uses: actions/checkout@v3
+ - uses: actions/checkout@v4
- name: Setup JDK 8
uses: actions/setup-java@v3
with:
diff --git a/.github/workflows/master.yml b/.github/workflows/master.yml
index fe92f6b6b..dd612a06c 100644
--- a/.github/workflows/master.yml
+++ b/.github/workflows/master.yml
@@ -86,7 +86,7 @@ jobs:
env:
SPARK_LOCAL_IP: localhost
steps:
- - uses: actions/checkout@v3
+ - uses: actions/checkout@v4
- name: Tune Runner VM
uses: ./.github/actions/tune-runner-vm
- name: Setup JDK ${{ matrix.java }}
@@ -140,7 +140,7 @@ jobs:
spark:
- '3.4'
steps:
- - uses: actions/checkout@v3
+ - uses: actions/checkout@v4
- name: Tune Runner VM
uses: ./.github/actions/tune-runner-vm
- name: Setup JDK ${{ matrix.java }}
@@ -196,7 +196,7 @@ jobs:
flink-archive:
'-Dflink.archive.mirror=https://archive.apache.org/dist/flink/flink-1.18.0
-Dflink.archive.name=flink-1.18.0-bin-scala_2.12.tgz'
comment: 'verify-on-flink-1.18-binary'
steps:
- - uses: actions/checkout@v3
+ - uses: actions/checkout@v4
- name: Tune Runner VM
uses: ./.github/actions/tune-runner-vm
- name: Setup JDK ${{ matrix.java }}
@@ -249,7 +249,7 @@ jobs:
hive-archive:
'-Dhive.archive.mirror=https://archive.apache.org/dist/hive/hive-2.3.9
-Dhive.archive.name=apache-hive-2.3.9-bin.tar.gz'
comment: 'verify-on-hive-2.3-binary'
steps:
- - uses: actions/checkout@v3
+ - uses: actions/checkout@v4
- name: Tune Runner VM
uses: ./.github/actions/tune-runner-vm
- name: Setup JDK ${{ matrix.java }}
@@ -295,7 +295,7 @@ jobs:
- 11
comment: [ "normal" ]
steps:
- - uses: actions/checkout@v3
+ - uses: actions/checkout@v4
- name: Tune Runner VM
uses: ./.github/actions/tune-runner-vm
- name: Setup JDK ${{ matrix.java }}
@@ -334,7 +334,7 @@ jobs:
- 11
comment: [ "normal" ]
steps:
- - uses: actions/checkout@v3
+ - uses: actions/checkout@v4
- name: Tune Runner VM
uses: ./.github/actions/tune-runner-vm
- name: Setup JDK ${{ matrix.java }}
@@ -368,7 +368,7 @@ jobs:
env:
SPARK_LOCAL_IP: localhost
steps:
- - uses: actions/checkout@v3
+ - uses: actions/checkout@v4
- name: Tune Runner VM
uses: ./.github/actions/tune-runner-vm
- name: Setup JDK 8
@@ -395,7 +395,7 @@ jobs:
runs-on: ubuntu-22.04
steps:
- name: Checkout
- uses: actions/checkout@v3
+ uses: actions/checkout@v4
# https://github.com/docker/build-push-action
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
@@ -467,7 +467,7 @@ jobs:
runs-on: ubuntu-22.04
steps:
- name: Checkout
- uses: actions/checkout@v3
+ uses: actions/checkout@v4
- name: Cache Engine Archives
uses: ./.github/actions/cache-engine-archives
- name: Setup Minikube
@@ -514,7 +514,7 @@ jobs:
zookeeper: ["3.4", "3.5", "3.6", "3.7" ]
comment: [ "normal" ]
steps:
- - uses: actions/checkout@v3
+ - uses: actions/checkout@v4
- name: Tune Runner VM
uses: ./.github/actions/tune-runner-vm
- name: Setup JDK ${{ matrix.java }}
diff --git a/.github/workflows/nightly.yml b/.github/workflows/nightly.yml
index 5ff634da6..b06858abd 100644
--- a/.github/workflows/nightly.yml
+++ b/.github/workflows/nightly.yml
@@ -33,7 +33,7 @@ jobs:
env:
SPARK_LOCAL_IP: localhost
steps:
- - uses: actions/checkout@v3
+ - uses: actions/checkout@v4
- name: Tune Runner VM
uses: ./.github/actions/tune-runner-vm
- name: Setup JDK 8
diff --git a/.github/workflows/publish-snapshot-docker.yml
b/.github/workflows/publish-snapshot-docker.yml
index 3afccee7a..9939bd190 100644
--- a/.github/workflows/publish-snapshot-docker.yml
+++ b/.github/workflows/publish-snapshot-docker.yml
@@ -28,7 +28,7 @@ jobs:
runs-on: ubuntu-22.04
steps:
- name: Checkout
- uses: actions/checkout@v3
+ uses: actions/checkout@v4
- name: Set up QEMU
uses: docker/setup-qemu-action@v2
- name: Set up Docker Buildx
diff --git a/.github/workflows/publish-snapshot-nexus.yml
b/.github/workflows/publish-snapshot-nexus.yml
index b4191396b..3b8280e00 100644
--- a/.github/workflows/publish-snapshot-nexus.yml
+++ b/.github/workflows/publish-snapshot-nexus.yml
@@ -43,7 +43,7 @@ jobs:
profiles: -Pflink-provided,spark-provided,hive-provided,spark-3.4
steps:
- name: Checkout repository
- uses: actions/checkout@v3
+ uses: actions/checkout@v4
with:
ref: ${{ matrix.branch }}
- name: Setup JDK 8
diff --git a/.github/workflows/style.yml b/.github/workflows/style.yml
index 87823ddbd..80c819b39 100644
--- a/.github/workflows/style.yml
+++ b/.github/workflows/style.yml
@@ -37,7 +37,7 @@ jobs:
-
'-Pflink-provided,hive-provided,spark-provided,spark-block-cleaner,spark-3.5,spark-3.4,spark-3.3,spark-3.2,tpcds,kubernetes-it'
steps:
- - uses: actions/checkout@v3
+ - uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Setup JDK 8
@@ -114,7 +114,7 @@ jobs:
name: Super Linter and Shellcheck
runs-on: ubuntu-22.04
steps:
- - uses: actions/checkout@v3
+ - uses: actions/checkout@v4
- name: Super Linter Checks
uses: github/super-linter/slim@v5
env:
diff --git a/.github/workflows/web-ui.yml b/.github/workflows/web-ui.yml
index 9de7a599d..868defcf4 100644
--- a/.github/workflows/web-ui.yml
+++ b/.github/workflows/web-ui.yml
@@ -20,7 +20,7 @@ jobs:
runs-on: ubuntu-22.04
steps:
- name: checkout
- uses: actions/checkout@v3
+ uses: actions/checkout@v4
- name: Setup JDK 8
uses: actions/setup-java@v3
with: