From ddef8cb31ffa837f72ade817d1a0d8fb2ceb0b61 Mon Sep 17 00:00:00 2001 From: Claude Date: Sat, 29 Aug 2026 07:07:32 +0000 Subject: [PATCH] ci: bump actions/setup-java from v5 to v6 v6.0.0 is now the latest major release. Our usage (java-version: 17, distribution: temurin) isn't affected by v6's breaking changes (removal of legacy Adopt distributions, jdkFile -> jdk-file rename). Keeps all 6 occurrences of the action (5 in check.yml, 1 in release.yml) at the same version. --- .github/workflows/check.yml | 10 +++++----- .github/workflows/release.yml | 2 +- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/check.yml b/.github/workflows/check.yml index 71fcf106..80fc0206 100644 --- a/.github/workflows/check.yml +++ b/.github/workflows/check.yml @@ -61,7 +61,7 @@ jobs: # Set up JDK and Android SDK only because we need weak-node-api, to build ferric-example and to run the linting # TODO: Remove this once we have a way to run linting without building the native code - name: Set up JDK 17 - uses: actions/setup-java@v5 + uses: actions/setup-java@v6 with: java-version: "17" distribution: "temurin" @@ -109,7 +109,7 @@ jobs: with: key: ${{ github.job }}-${{ runner.os }} - name: Set up JDK 17 - uses: actions/setup-java@v5 + uses: actions/setup-java@v6 with: java-version: "17" distribution: "temurin" @@ -280,7 +280,7 @@ jobs: with: key: ${{ github.job }}-${{ runner.os }} - name: Set up JDK 17 - uses: actions/setup-java@v5 + uses: actions/setup-java@v6 with: java-version: "17" distribution: "temurin" @@ -329,7 +329,7 @@ jobs: with: key: ${{ github.job }}-${{ runner.os }} - name: Set up JDK 17 - uses: actions/setup-java@v5 + uses: actions/setup-java@v6 with: java-version: "17" distribution: "temurin" @@ -420,7 +420,7 @@ jobs: with: key: ${{ github.job }}-${{ runner.os }} - name: Set up JDK 17 - uses: actions/setup-java@v5 + uses: actions/setup-java@v6 with: java-version: "17" distribution: "temurin" diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 2d102a01..7a5a28d6 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -115,7 +115,7 @@ jobs: with: key: ${{ github.job }}-${{ runner.os }} - name: Set up JDK 17 - uses: actions/setup-java@v5 + uses: actions/setup-java@v6 with: java-version: "17" distribution: "temurin"