From f00e585f3d7456c9c62745943636348be4d3ecba Mon Sep 17 00:00:00 2001 From: Florian Schmaus Date: Fri, 10 Mar 2023 09:16:52 +0100 Subject: [PATCH 1/2] [github ci]: Bump to Ubuntu 22.04 --- .github/workflows/ci.yml | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index ddaf29404..ca6991367 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -9,18 +9,20 @@ jobs: build: name: Build Smack - runs-on: ubuntu-20.04 + runs-on: ubuntu-22.04 strategy: matrix: - java: [ 1.8, 11 ] + java: [ 8, 11 ] steps: - name: Checkout - uses: actions/checkout@v2 + uses: actions/checkout@v3 + - name: Set up JDK ${{ matrix.java }} - uses: actions/setup-java@v1 + uses: actions/setup-java@v3 with: java-version: ${{ matrix.java }} + distribution: temurin # Caches - name: Cache Maven From 3ba1aba2e310f767e19b1a065f8f571bda7f808f Mon Sep 17 00:00:00 2001 From: Florian Schmaus Date: Fri, 17 Mar 2023 17:52:33 +0100 Subject: [PATCH 2/2] [github ci]: Disable Java 8 (potentially temprorary) We currently run into https://github.com/android-actions/setup-android/issues/378 --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index ca6991367..cf69f7140 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -12,7 +12,7 @@ jobs: runs-on: ubuntu-22.04 strategy: matrix: - java: [ 8, 11 ] + java: [ 11 ] steps: - name: Checkout