From 596ea7cfc6e3c86d5b9572088a58ac8012eaa7ec Mon Sep 17 00:00:00 2001 From: Jeffrey Kardatzke Date: Fri, 16 May 2025 10:55:58 -0700 Subject: [PATCH] Update actions for new cache version There's an incompatibility with the older cache version action which the setup-java one depends on. I'm also updating the checkout version as well for good measure. --- .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 24a7d0d6..8e699c70 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -13,9 +13,9 @@ jobs: runs-on: ubuntu-22.04 steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - name: Set up Oracle JDK 11 - uses: actions/setup-java@v2 + uses: actions/setup-java@v4 with: java-version: '11' distribution: 'adopt'