You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by pc...@apache.org on 2024/01/23 15:05:55 UTC

(camel-k) 01/06: chore(ci): upgrade setup-java actions

This is an automated email from the ASF dual-hosted git repository.

pcongiusti pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/camel-k.git

commit 10ce0766e1b411af232e230bc8ecea168f12c92a
Author: Gaelle Fournier <ga...@gmail.com>
AuthorDate: Fri Jan 19 14:04:06 2024 +0100

    chore(ci): upgrade setup-java actions
---
 .github/actions/java-build/action.yml        | 2 +-
 .github/actions/kamel-prepare-env/action.yml | 2 +-
 .github/actions/release-nightly/action.yml   | 2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/.github/actions/java-build/action.yml b/.github/actions/java-build/action.yml
index 14743f7ff..fbaf7e09a 100644
--- a/.github/actions/java-build/action.yml
+++ b/.github/actions/java-build/action.yml
@@ -29,7 +29,7 @@ runs:
   using: "composite"
   steps:
     - name: Set up JDK ${{ inputs.javaVersion }}
-      uses: actions/setup-java@v3
+      uses: actions/setup-java@v4
       with:
         distribution: ${{ inputs.javaDistribution }}
         java-version: ${{ inputs.javaVersion }}
diff --git a/.github/actions/kamel-prepare-env/action.yml b/.github/actions/kamel-prepare-env/action.yml
index c5456eee1..e94ee76f0 100644
--- a/.github/actions/kamel-prepare-env/action.yml
+++ b/.github/actions/kamel-prepare-env/action.yml
@@ -63,7 +63,7 @@ runs:
         df -h
 
     - name: Set up JDK 17
-      uses: actions/setup-java@v3
+      uses: actions/setup-java@v4
       if: ${{ env.ENV_PREPARED != 'true' }}
       with:
         java-version: '17'
diff --git a/.github/actions/release-nightly/action.yml b/.github/actions/release-nightly/action.yml
index 80bfd5e97..a2d556fed 100644
--- a/.github/actions/release-nightly/action.yml
+++ b/.github/actions/release-nightly/action.yml
@@ -43,7 +43,7 @@ runs:
   steps:
 
     - name: Set up JDK ${{ inputs.javaVersion }}
-      uses: actions/setup-java@v3
+      uses: actions/setup-java@v4
       with:
         java-version: ${{ inputs.javaVersion }}
         distribution: "temurin"