Merge pull request #891 from akrherz/ci

Fixup GHA
This commit is contained in:
daryl herzmann 2025-06-12 10:26:57 -05:00 committed by GitHub
commit 9ed3557bd6
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 13 additions and 3 deletions

10
.github/dependabot.yml vendored Normal file
View File

@ -0,0 +1,10 @@
version: 2
updates:
- package-ecosystem: "github-actions"
directory: "/"
schedule:
interval: "monthly"
groups:
github-actions:
patterns:
- '*'

View File

@ -6,7 +6,7 @@ jobs:
build:
name: Build Spark
runs-on: ubuntu-20.04
runs-on: ubuntu-latest
strategy:
matrix:
java:
@ -17,7 +17,7 @@ jobs:
steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v4
- name: Set up JDK ${{ matrix.java }}
uses: actions/setup-java@v1
@ -25,7 +25,7 @@ jobs:
java-version: ${{ matrix.java }}
- name: Cache Maven packages
uses: actions/cache@v2
uses: actions/cache@v3
with:
path: ~/.m2
key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}