Skip to content

Commit 993de0b

Browse files
committed
Updated build to run using ubuntu-latest and JDK 21
1 parent 8a05baa commit 993de0b

File tree

1 file changed

+12
-4
lines changed

1 file changed

+12
-4
lines changed

.github/workflows/build.yml

Lines changed: 12 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,15 @@ on:
1010

1111
jobs:
1212
build:
13-
uses: ResilientGroup/MavenSetup/.github/workflows/build.yml@1.9.0
14-
with:
15-
javadoc-project-name: PowerCamera
16-
secrets: inherit
13+
runs-on: ubuntu-latest
14+
15+
steps:
16+
- uses: actions/checkout@v3
17+
- name: Set up JDK 21
18+
uses: actions/setup-java@v3
19+
with:
20+
java-version: '21'
21+
distribution: 'temurin'
22+
cache: maven
23+
- name: Build with Maven
24+
run: mvn -B package --file pom.xml

0 commit comments

Comments
 (0)