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 7072bda19 [KYUUBI #5838] [BUILD] Bump actions/setup-python from v4 to
v5
7072bda19 is described below
commit 7072bda19f69a8f38c8bcffce2b1ae232daf0346
Author: Bowen Liang <[email protected]>
AuthorDate: Sat Dec 9 23:30:21 2023 +0800
[KYUUBI #5838] [BUILD] Bump actions/setup-python from v4 to v5
# :mag: Description
## Issue References ๐
As described.
## Describe Your Solution ๐ง
- `setup-python` Github Action v5 release note:
https://github.com/actions/setup-python/releases/tag/v5.0.0. Update node
version runtime for the actions from node16 to node20.
## 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:
#### Behavior With This Pull Request :tada:
#### Related Unit Tests
---
# 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
- [x] 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 #5838 from bowenliang123/actions-python-5.
Closes #5838
f1703d690 [Bowen Liang] Bump actions/setup-python from v4 to v5
Authored-by: Bowen Liang <[email protected]>
Signed-off-by: Bowen Liang <[email protected]>
---
.github/workflows/docs.yml | 2 +-
.github/workflows/master.yml | 2 +-
.github/workflows/style.yml | 2 +-
3 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml
index 804338abe..3b2ea90d6 100644
--- a/.github/workflows/docs.yml
+++ b/.github/workflows/docs.yml
@@ -32,7 +32,7 @@ jobs:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- - uses: actions/setup-python@v4
+ - uses: actions/setup-python@v5
with:
python-version: '3.9'
cache: 'pip'
diff --git a/.github/workflows/master.yml b/.github/workflows/master.yml
index 1c8c879c0..a9236c02e 100644
--- a/.github/workflows/master.yml
+++ b/.github/workflows/master.yml
@@ -101,7 +101,7 @@ jobs:
- name: Setup Maven
uses: ./.github/actions/setup-maven
- name: Setup Python
- uses: actions/setup-python@v4
+ uses: actions/setup-python@v5
with:
python-version: '3.9'
- name: Build and test Kyuubi and Spark with maven w/o linters
diff --git a/.github/workflows/style.yml b/.github/workflows/style.yml
index 80c819b39..7dfbbe4c2 100644
--- a/.github/workflows/style.yml
+++ b/.github/workflows/style.yml
@@ -50,7 +50,7 @@ jobs:
- name: Setup Maven
uses: ./.github/actions/setup-maven
- name: Setup Python 3
- uses: actions/setup-python@v4
+ uses: actions/setup-python@v5
with:
python-version: '3.9'
cache: 'pip'