From 59a0b0072213bc2757bf42fd7ce0aeddb43bf33f Mon Sep 17 00:00:00 2001 From: Radek Felcman Date: Mon, 27 Jan 2025 10:27:51 +0100 Subject: [PATCH] GitHub Actions upgrade Signed-off-by: Radek Felcman --- .github/workflows/maven.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/maven.yml b/.github/workflows/maven.yml index b5eb17a716f..471c7d96476 100644 --- a/.github/workflows/maven.yml +++ b/.github/workflows/maven.yml @@ -1,5 +1,5 @@ # -# Copyright (c) 2021, 2023 Contributors to the Eclipse Foundation +# Copyright (c) 2021, 2025 Contributors to the Eclipse Foundation # # This program and the accompanying materials are made available under the # terms of the Eclipse Public License v. 2.0 which is available at @@ -41,16 +41,16 @@ jobs: mysql -e 'CREATE DATABASE ecltests;' -uroot -proot mysql -e 'SHOW DATABASES;' -uroot -proot - name: Cache local Maven repository - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: ~/.m2/repository key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }} restore-keys: | ${{ runner.os }}-maven- - name: Checkout for build - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Set up JDK - uses: actions/setup-java@v3 + uses: actions/setup-java@v4 with: distribution: 'adopt' java-version: ${{ matrix.java_version }}