You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@logging.apache.org by vy...@apache.org on 2022/04/11 07:11:59 UTC

[logging-log4j2] branch release-2.x updated: Bump GitHub setup-java action to v3. (#816)

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

vy pushed a commit to branch release-2.x
in repository https://gitbox.apache.org/repos/asf/logging-log4j2.git


The following commit(s) were added to refs/heads/release-2.x by this push:
     new fb83682941 Bump GitHub setup-java action to v3. (#816)
fb83682941 is described below

commit fb836829414ffb2eba183fd7a9fbbc0b3fae8721
Author: sullis <gi...@seansullivan.com>
AuthorDate: Mon Apr 11 00:11:52 2022 -0700

    Bump GitHub setup-java action to v3. (#816)
---
 .github/workflows/benchmark.yml       | 12 ++++++------
 .github/workflows/build.yml           |  6 +++---
 .github/workflows/codeql-analysis.yml |  6 +++---
 3 files changed, 12 insertions(+), 12 deletions(-)

diff --git a/.github/workflows/benchmark.yml b/.github/workflows/benchmark.yml
index a50dde8c32..c98512f0aa 100644
--- a/.github/workflows/benchmark.yml
+++ b/.github/workflows/benchmark.yml
@@ -28,12 +28,12 @@ jobs:
     steps:
 
       - name: Checkout repository
-        uses: actions/checkout@v2
+        uses: actions/checkout@v3
 
       # JDK 11 is needed for the build.
       # Search `maven-toolchains-plugin` usages for details.
       - name: Set up JDK 11
-        uses: actions/setup-java@v2.4.0
+        uses: actions/setup-java@v3
         with:
           distribution: temurin
           java-version: 11
@@ -44,7 +44,7 @@ jobs:
       # JDK 8 is needed for the build, and it is the primary bytecode target.
       # Hence, JDK 8 is set up after 11, so that JAVA_HOME used by Maven during build will point to 8.
       - name: Set up JDK 8
-        uses: actions/setup-java@v2.3.1
+        uses: actions/setup-java@v3
         with:
           distribution: temurin
           java-version: 8
@@ -87,7 +87,7 @@ jobs:
     steps:
 
       - name: Checkout repository
-        uses: actions/checkout@v2
+        uses: actions/checkout@v3
 
       - name: Download built sources
         uses: actions/download-artifact@v2
@@ -96,7 +96,7 @@ jobs:
           path: log4j-perf/target
 
       - name: Set up JDK ${{ matrix.jdk }}
-        uses: actions/setup-java@v2.4.0
+        uses: actions/setup-java@v3
         with:
           distribution: temurin
           java-version: ${{ matrix.jdk }}
@@ -192,7 +192,7 @@ jobs:
     steps:
 
       - name: Checkout repository
-        uses: actions/checkout@v2
+        uses: actions/checkout@v3
         with:
           ref: gh-pages
 
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml
index a1481a9fce..4fa7a6dbc1 100644
--- a/.github/workflows/build.yml
+++ b/.github/workflows/build.yml
@@ -33,12 +33,12 @@ jobs:
     steps:
 
       - name: Checkout repository
-        uses: actions/checkout@v2
+        uses: actions/checkout@v3
 
       # JDK 11 is needed for the build.
       # Search `maven-toolchains-plugin` usages for details.
       - name: Setup JDK 11
-        uses: actions/setup-java@v2.4.0
+        uses: actions/setup-java@v3
         with:
           distribution: temurin
           java-version: 11
@@ -49,7 +49,7 @@ jobs:
       # JDK 8 is needed for the build, and it is the primary bytecode target.
       # Hence, JDK 8 is set up after 11, so that JAVA_HOME used by Maven during build will point to 8.
       - name: Setup JDK 8
-        uses: actions/setup-java@v2.3.0
+        uses: actions/setup-java@v3
         with:
           distribution: temurin
           java-version: 8
diff --git a/.github/workflows/codeql-analysis.yml b/.github/workflows/codeql-analysis.yml
index 3aab614669..1443762661 100644
--- a/.github/workflows/codeql-analysis.yml
+++ b/.github/workflows/codeql-analysis.yml
@@ -43,7 +43,7 @@ jobs:
 
     steps:
     - name: Checkout repository
-      uses: actions/checkout@v2
+      uses: actions/checkout@v3
 
     # Initializes the CodeQL tools for scanning.
     - name: Initialize CodeQL
@@ -58,7 +58,7 @@ jobs:
     # JDK 11 is needed for the build.
     # Search `maven-toolchains-plugin` usages for details.
     - name: Setup JDK 11
-      uses: actions/setup-java@v2.4.0
+      uses: actions/setup-java@v3
       with:
         distribution: temurin
         java-version: 11
@@ -69,7 +69,7 @@ jobs:
     # JDK 8 is needed for the build, and it is the primary bytecode target.
     # Hence, JDK 8 is set up after 11, so that JAVA_HOME used by Maven during build will point to 8.
     - name: Setup JDK 8
-      uses: actions/setup-java@v2.3.0
+      uses: actions/setup-java@v3
       with:
         distribution: temurin
         java-version: 8