Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,10 @@ jobs:
os: [ubuntu-latest, macos-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
- uses: actions/setup-java@v1
- uses: actions/checkout@v3
- uses: actions/setup-java@v5
with:
java-version: ${{ matrix.java-version }}
distribution: temurin
cache: maven
Copy link
Copy Markdown
Contributor

@Aggarwal-Raghav Aggarwal-Raghav Apr 28, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@abstractdog , in hive also this cache seems to be problematic IMO. The Jenkins/Github Actions should always download the fresh artifacts from artifactory. Giving you a heads up

- run: mvn clean install -DskipTests -Dmaven.javadoc.skip=true
Loading