Skip to content

Commit ea37606

Browse files
committed
ci: bump gha components
add gha to dependabot
1 parent a1cfe2a commit ea37606

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

.github/dependabot.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,3 +46,7 @@ updates:
4646
- dependency-name: acorn
4747
versions:
4848
- 8.0.5
49+
- package-ecosystem: "github-actions"
50+
directory: "/"
51+
schedule:
52+
interval: "weekly"

.github/workflows/ci.yml

Lines changed: 4 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -10,17 +10,13 @@ jobs:
1010
os: [ubuntu-latest]
1111
runs-on: ${{ matrix.os }}
1212
steps:
13-
- uses: actions/checkout@v2
13+
- uses: actions/checkout@v4
1414
- name: Set up JDK ${{ matrix.jdk }}
15-
uses: actions/setup-java@v1
15+
uses: actions/setup-java@v4
1616
with:
17+
distribution: temurin
18+
cache: maven
1719
java-version: ${{ matrix.jdk }}
18-
- name: Cache Maven packages
19-
uses: actions/cache@v2
20-
with:
21-
path: ~/.m2
22-
key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}
23-
restore-keys: ${{ runner.os }}-m2
2420
- name: Maven Build
2521
run: mvn clean package -DskipTests
2622
- name: Test

0 commit comments

Comments
 (0)