From d6b8cd98516deaafb8b3f745d6fe3c29efa5cf00 Mon Sep 17 00:00:00 2001 From: Joe Di Pol Date: Tue, 20 May 2025 13:10:57 -0700 Subject: [PATCH 1/3] Upgrade actions setup-java to 4.7.1 and cache to 4.2.3 --- .github/actions/common/action.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/actions/common/action.yml b/.github/actions/common/action.yml index da4a84f1edc..eae1f757c2b 100644 --- a/.github/actions/common/action.yml +++ b/.github/actions/common/action.yml @@ -113,7 +113,7 @@ runs: set-java-home: 'false' - name: Set up JDK if: ${{ inputs.setup-latest-java == 'false' }} - uses: actions/setup-java@v4.1.0 + uses: actions/setup-java@v4.7.1 with: distribution: ${{ env.JAVA_DISTRO }} java-version: ${{ env.JAVA_VERSION }} @@ -127,7 +127,7 @@ runs: version: stable - name: Cache local Maven repository (read-write) if: ${{ inputs.maven-cache == 'read-write' }} - uses: actions/cache@v4.2.0 + uses: actions/cache@v4.2.3 with: # See https://github.com/actions/toolkit/issues/713 # Include must not match top level directories @@ -141,7 +141,7 @@ runs: local-maven- - name: Cache local Maven repository (read-only) if: ${{ inputs.maven-cache == 'read-only' }} - uses: actions/cache/restore@v4.2.0 + uses: actions/cache/restore@v4.2.3 with: path: | .m2/repository/**/*.* @@ -152,7 +152,7 @@ runs: local-maven- - name: Build cache (read-write) if: ${{ inputs.build-cache == 'read-write' }} - uses: actions/cache@v4.2.0 + uses: actions/cache@v4.2.3 with: path: | ./**/target/** @@ -173,7 +173,7 @@ runs: key: build-cache-${{ github.run_id }}-${{ github.run_attempt }}-${{ inputs.build-cache-id }} - name: Build cache (read-only) if: ${{ inputs.build-cache == 'read-only' }} - uses: actions/cache/restore@v4.2.0 + uses: actions/cache/restore@v4.2.3 with: path: | ./**/target/** From c9ab09713eee358da27b718527536117df018fe2 Mon Sep 17 00:00:00 2001 From: Joe Di Pol Date: Wed, 15 Oct 2025 11:56:41 -0700 Subject: [PATCH 2/3] Upgrade actions/cache to 4.2.4 --- .github/actions/common/action.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/actions/common/action.yml b/.github/actions/common/action.yml index eae1f757c2b..b2b74fccf9f 100644 --- a/.github/actions/common/action.yml +++ b/.github/actions/common/action.yml @@ -86,7 +86,7 @@ runs: git config --global core.eol lf - if: ${{ inputs.setup-maven == 'true' }} name: Cache Maven Installation - uses: actions/cache@v4.2.0 + uses: actions/cache@v4.2.4 with: path: .tools/apache-maven-*/** enableCrossOsArchive: true @@ -127,7 +127,7 @@ runs: version: stable - name: Cache local Maven repository (read-write) if: ${{ inputs.maven-cache == 'read-write' }} - uses: actions/cache@v4.2.3 + uses: actions/cache@v4.2.4 with: # See https://github.com/actions/toolkit/issues/713 # Include must not match top level directories @@ -152,7 +152,7 @@ runs: local-maven- - name: Build cache (read-write) if: ${{ inputs.build-cache == 'read-write' }} - uses: actions/cache@v4.2.3 + uses: actions/cache@v4.2.4 with: path: | ./**/target/** @@ -164,7 +164,7 @@ runs: build-cache-${{ github.run_id }}- - name: Build cache (write-only) if: ${{ inputs.build-cache == 'write-only' }} - uses: actions/cache@v4.2.0 + uses: actions/cache@v4.2.4 with: path: | ./**/target/** From e6b426e143e3e0495234156bd37acaaa67b8fbab Mon Sep 17 00:00:00 2001 From: Joe Di Pol Date: Wed, 15 Oct 2025 11:59:23 -0700 Subject: [PATCH 3/3] Upgrade cache/restore to 4.2.4 --- .github/actions/common/action.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/actions/common/action.yml b/.github/actions/common/action.yml index b2b74fccf9f..001b7d0e230 100644 --- a/.github/actions/common/action.yml +++ b/.github/actions/common/action.yml @@ -141,7 +141,7 @@ runs: local-maven- - name: Cache local Maven repository (read-only) if: ${{ inputs.maven-cache == 'read-only' }} - uses: actions/cache/restore@v4.2.3 + uses: actions/cache/restore@v4.2.4 with: path: | .m2/repository/**/*.* @@ -173,7 +173,7 @@ runs: key: build-cache-${{ github.run_id }}-${{ github.run_attempt }}-${{ inputs.build-cache-id }} - name: Build cache (read-only) if: ${{ inputs.build-cache == 'read-only' }} - uses: actions/cache/restore@v4.2.3 + uses: actions/cache/restore@v4.2.4 with: path: | ./**/target/**