Skip to content

Commit

Permalink
[KYUUBI #6775] Bump Github actions action/cache and actions/dependenc…
Browse files Browse the repository at this point in the history
…y-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

de7b9fd [Bowen Liang] actions/dependency-review-action@v4
c9e4192 [Bowen Liang] actions/cache@v4

Authored-by: Bowen Liang <[email protected]>
Signed-off-by: Bowen Liang <[email protected]>
  • Loading branch information
bowenliang123 committed Oct 23, 2024
1 parent f876600 commit e446724
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .github/actions/cache-engine-archives/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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 changes: 1 addition & 1 deletion .github/actions/setup-maven/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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') }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/dep.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 changes: 3 additions & 3 deletions .github/workflows/gluten.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}
Expand All @@ -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/
Expand Down Expand Up @@ -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 }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/web-ui.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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') }}
Expand Down

0 comments on commit e446724

Please sign in to comment.