From f00e585f3d7456c9c62745943636348be4d3ecba Mon Sep 17 00:00:00 2001 From: Florian Schmaus Date: Fri, 10 Mar 2023 09:16:52 +0100 Subject: [PATCH] [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