Skip to content

Commit

Permalink
Merge pull request #209 from HannesWell/update-build
Browse files Browse the repository at this point in the history
[Build] Update actions to their latest version and build with Temurin
  • Loading branch information
NiklasRentzCAU authored Oct 8, 2024
2 parents e3fc39b + 7298037 commit 00346fe
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/buildAndTest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
uses: actions/setup-java@v4
with:
java-version: 17
distribution: adopt
distribution: temurin
- name: Cache Maven packages
uses: actions/cache@v4
with:
Expand All @@ -43,23 +43,23 @@ jobs:
#print the folder structure up to depth 2 on the console as we have no other option of getting an inside into workspace folder
find . -maxdepth 2
- name: Archive P2 Repository
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: KLighD P2 Repository
path: build/de.cau.cs.kieler.klighd.repository/target/repository/**/*
retention-days: 14
if-no-files-found: error
- name: Archive MVN Repository
if: ${{ !contains(github.ref, 'releases-') }}
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: KLighD MVN Repository
path: klighd-snapshots/**/*
retention-days: 14
if-no-files-found: error
- name: Archive MVN Release Repository
if: ${{ contains(github.ref, 'releases-') }}
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: KLighD MVN Repository
path: klighd/**/*
Expand Down

0 comments on commit 00346fe

Please sign in to comment.