From 72980378c14018da56f9bae00290af56b8d33ce4 Mon Sep 17 00:00:00 2001 From: Hannes Wellmann Date: Tue, 13 Aug 2024 13:12:57 +0200 Subject: [PATCH] [Build] Update actions to their latest version and build with Temurin --- .github/workflows/buildAndTest.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/buildAndTest.yml b/.github/workflows/buildAndTest.yml index 9ff2994c7..ed1ffaed0 100644 --- a/.github/workflows/buildAndTest.yml +++ b/.github/workflows/buildAndTest.yml @@ -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: @@ -43,7 +43,7 @@ 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/**/* @@ -51,7 +51,7 @@ jobs: 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/**/* @@ -59,7 +59,7 @@ jobs: 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/**/*