From 7a31e10a54585f0ae19b6f9d74608bbf97fb6b7c Mon Sep 17 00:00:00 2001 From: Vincent Paturet Date: Tue, 10 Dec 2024 16:55:16 +0100 Subject: [PATCH] Upgrade container version --- .github/workflows/push.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/push.yml b/.github/workflows/push.yml index 9288810a9..d0d030d98 100644 --- a/.github/workflows/push.yml +++ b/.github/workflows/push.yml @@ -14,10 +14,10 @@ env: jobs: maven-verify: runs-on: ubuntu-24.04 - container: cimg/openjdk:17.0.11 + container: cimg/openjdk:17.0.13 services: postgres: - image: postgis/postgis:13-3.1 + image: postgis/postgis:13-3.5 env: TZ: Europe/Oslo POSTGRES_DB: chouette_test @@ -39,14 +39,14 @@ jobs: - name: Cache Maven dependencies uses: actions/cache@v4 with: + # Run mvn help:evaluate -Dexpression=settings.localRepository -s .github/workflows/settings.xml + # to find the location of the Maven cache in the container path: /home/circleci/.m2/repository key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }} restore-keys: | ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }} ${{ runner.os }}-maven- ${{ runner.os }}- - - name: Test Maven config - run: mvn help:evaluate -Dexpression=settings.localRepository -s .github/workflows/settings.xml - name: Run maven build run: mvn -DskipWildfly -DskipDelombok -Ddb.host=postgres -B clean install -s .github/workflows/settings.xml - name: Sonar Scan