From 2da13a8a488e18945ee2e3b5d5a24f60653235ee Mon Sep 17 00:00:00 2001 From: wrandelshofer Date: Sat, 19 Oct 2024 18:48:11 +0200 Subject: [PATCH] ci.yml use checkout@v4, setup-java@v4 instead of v3. --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 7c5a9e5c..24e7c360 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -15,9 +15,9 @@ jobs: max-parallel: 4 name: Test JDK ${{ matrix.java }}, ${{ matrix.os }}, ${{ matrix.arch }} steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Set up JDK ${{ matrix.java }} - uses: actions/setup-java@v3 + uses: actions/setup-java@v4 with: java-version: ${{ matrix.java }} architecture: ${{ matrix.arch }}