[KYUUBI #6775] Bump Github actions action/cache and actions/dependency-review-action v4
# 🔍 Description ## Issue References 🔗 This pull request fixes # ## Describe Your Solution 🔧 - as titled ## Types of changes 🔖 - [ ] 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 ⚰️ #### Behavior With This Pull Request 🎉 #### Related Unit Tests --- # Checklist 📝 - [ ] This patch was not authored or co-authored using [Generative Tooling](https://www.apache.org/legal/generative-tooling.html) **Be nice. Be informative.** Closes #6775 from bowenliang123/gha-cache-v4. Closes #6775 de7b9fdf0 [Bowen Liang] actions/dependency-review-action@v4 c9e41923a [Bowen Liang] actions/cache@v4 Authored-by: Bowen Liang <liangbowen@gf.com.cn> Signed-off-by: Bowen Liang <liangbowen@gf.com.cn>
This commit is contained in:
parent
f876600c4a
commit
e446724488
@ -21,7 +21,7 @@ runs:
|
||||
using: composite
|
||||
steps:
|
||||
- name: Cache Engine Archives
|
||||
uses: actions/cache@v3
|
||||
uses: actions/cache@v4
|
||||
with:
|
||||
path: /tmp/engine-archives
|
||||
key: engine-archives
|
||||
|
||||
2
.github/actions/setup-maven/action.yaml
vendored
2
.github/actions/setup-maven/action.yaml
vendored
@ -21,7 +21,7 @@ runs:
|
||||
using: composite
|
||||
steps:
|
||||
- name: Restore cached Maven
|
||||
uses: actions/cache@v3
|
||||
uses: actions/cache@v4
|
||||
with:
|
||||
path: build/apache-maven-*
|
||||
key: setup-maven-${{ hashFiles('pom.xml') }}
|
||||
|
||||
2
.github/workflows/dep.yml
vendored
2
.github/workflows/dep.yml
vendored
@ -59,6 +59,6 @@ jobs:
|
||||
- name: Check dependency list
|
||||
run: build/dependency.sh
|
||||
- name: Dependency Review
|
||||
uses: actions/dependency-review-action@v3
|
||||
uses: actions/dependency-review-action@v4
|
||||
with:
|
||||
fail-on-severity: moderate
|
||||
|
||||
6
.github/workflows/gluten.yml
vendored
6
.github/workflows/gluten.yml
vendored
@ -53,7 +53,7 @@ jobs:
|
||||
run: echo "date=$(date +'%Y-%m-%d')" >> $GITHUB_OUTPUT
|
||||
- name: Check gluten cache
|
||||
id: gluten-cache
|
||||
uses: actions/cache@v3
|
||||
uses: actions/cache@v4
|
||||
with:
|
||||
path: gluten/package/target/
|
||||
key: gluten_package_${{ steps.date.outputs.date }}
|
||||
@ -64,7 +64,7 @@ jobs:
|
||||
cd gluten
|
||||
./dev/buildbundle-veloxbe.sh
|
||||
fi
|
||||
- uses: actions/cache@v3
|
||||
- uses: actions/cache@v4
|
||||
if: steps.gluten-cache.outputs.cache-hit != 'true'
|
||||
with:
|
||||
path: gluten/package/target/
|
||||
@ -98,7 +98,7 @@ jobs:
|
||||
run: echo "date=$(date +'%Y-%m-%d')" >> $GITHUB_OUTPUT
|
||||
- name: Check gluten cache
|
||||
id: gluten-cache
|
||||
uses: actions/cache@v3
|
||||
uses: actions/cache@v4
|
||||
with:
|
||||
path: gluten/package/target/
|
||||
key: gluten_package_${{ steps.date.outputs.date }}
|
||||
|
||||
2
.github/workflows/python.yml
vendored
2
.github/workflows/python.yml
vendored
@ -43,7 +43,7 @@ jobs:
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
- name: Set up Python ${{ matrix.python-version }}
|
||||
uses: actions/setup-python@v2
|
||||
uses: actions/setup-python@v5
|
||||
with:
|
||||
python-version: ${{ matrix.python-version }}
|
||||
- name: Start Testing Containers
|
||||
|
||||
2
.github/workflows/web-ui.yml
vendored
2
.github/workflows/web-ui.yml
vendored
@ -41,7 +41,7 @@ jobs:
|
||||
cache: npm
|
||||
cache-dependency-path: ./kyuubi-server/web-ui/package.json
|
||||
- name: Cache NPM dependencies
|
||||
uses: actions/cache@v3
|
||||
uses: actions/cache@v4
|
||||
with:
|
||||
path: ./kyuubi-server/web-ui/node_modules
|
||||
key: webui-dependencies-${{ hashFiles('kyuubi-server/web-ui/pnpm-lock.yaml') }}
|
||||
|
||||
Loading…
Reference in New Issue
Block a user