Skip to content

Commit 7298037

Browse files
[Build] Update actions to their latest version and build with Temurin
1 parent 330c595 commit 7298037

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/buildAndTest.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
uses: actions/setup-java@v4
2727
with:
2828
java-version: 17
29-
distribution: adopt
29+
distribution: temurin
3030
- name: Cache Maven packages
3131
uses: actions/cache@v4
3232
with:
@@ -43,23 +43,23 @@ jobs:
4343
#print the folder structure up to depth 2 on the console as we have no other option of getting an inside into workspace folder
4444
find . -maxdepth 2
4545
- name: Archive P2 Repository
46-
uses: actions/upload-artifact@v3
46+
uses: actions/upload-artifact@v4
4747
with:
4848
name: KLighD P2 Repository
4949
path: build/de.cau.cs.kieler.klighd.repository/target/repository/**/*
5050
retention-days: 14
5151
if-no-files-found: error
5252
- name: Archive MVN Repository
5353
if: ${{ !contains(github.ref, 'releases-') }}
54-
uses: actions/upload-artifact@v3
54+
uses: actions/upload-artifact@v4
5555
with:
5656
name: KLighD MVN Repository
5757
path: klighd-snapshots/**/*
5858
retention-days: 14
5959
if-no-files-found: error
6060
- name: Archive MVN Release Repository
6161
if: ${{ contains(github.ref, 'releases-') }}
62-
uses: actions/upload-artifact@v3
62+
uses: actions/upload-artifact@v4
6363
with:
6464
name: KLighD MVN Repository
6565
path: klighd/**/*

0 commit comments

Comments
 (0)