Skip to content

Commit 79f8470

Browse files
author
Steven Webber
committed
Remove the build for quarkus
1 parent 728a6fc commit 79f8470

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

.github/workflows/build.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11,12 +11,12 @@ jobs:
1111
runs-on: ubuntu-latest
1212

1313
steps:
14-
- uses: actions/checkout@v3
14+
- uses: actions/checkout@v5
1515
with:
1616
fetch-depth: 0 # Fetch all history for all branches and tags
1717

1818
- name: Set up JDK 21
19-
uses: actions/setup-java@v3
19+
uses: actions/setup-java@v5
2020
with:
2121
java-version: '21'
2222
distribution: 'temurin'
@@ -29,16 +29,16 @@ jobs:
2929
run: ./gradlew build --no-daemon
3030

3131
- name: Test Summary
32-
uses: mikepenz/action-junit-report@v3
32+
uses: mikepenz/action-junit-report@v5
3333
if: always() # always run even if the previous step fails
3434
with:
3535
report_paths: '**/build/test-results/test/TEST-*.xml'
3636

3737
- name: Upload Build Artifacts
38-
uses: actions/upload-artifact@v3
38+
uses: actions/upload-artifact@v4
3939
if: success()
4040
with:
4141
name: build-artifacts
4242
path: |
4343
*/build/libs/*.jar
44-
*/build/reports/**
44+
*/build/reports/**

0 commit comments

Comments
 (0)