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

fokko pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/parquet-format.git


The following commit(s) were added to refs/heads/master by this push:
     new aeae806  PARQUET-2313: Bump actions/setup-java from 1 to 3 (#203)
aeae806 is described below

commit aeae80660c1d0c97314e9da837de1abdebd49c37
Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
AuthorDate: Thu Sep 21 14:10:58 2023 +0200

    PARQUET-2313: Bump actions/setup-java from 1 to 3 (#203)
    
    * Bump actions/setup-java from 1 to 3
    
    Bumps [actions/setup-java](https://github.com/actions/setup-java) from 1 to 
3.
    - [Release notes](https://github.com/actions/setup-java/releases)
    - [Commits](https://github.com/actions/setup-java/compare/v1...v3)
    
    ---
    updated-dependencies:
    - dependency-name: actions/setup-java
      dependency-type: direct:production
      update-type: version-update:semver-major
    ...
    
    Signed-off-by: dependabot[bot] <[email protected]>
    
    * Add distribution
    
    ---------
    
    Signed-off-by: dependabot[bot] <[email protected]>
    Co-authored-by: dependabot[bot] 
<49699333+dependabot[bot]@users.noreply.github.com>
    Co-authored-by: Fokko Driesprong <[email protected]>
---
 .github/workflows/test.yml | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml
index e0deddb..f0dbc2b 100644
--- a/.github/workflows/test.yml
+++ b/.github/workflows/test.yml
@@ -26,15 +26,16 @@ jobs:
     strategy:
       fail-fast: false
       matrix:
-        java: [ '1.8', '11' ]
+        java: [ '8', '11', '17' ]
     name: Build Parquet with JDK ${{ matrix.java }}
 
     steps:
       - uses: actions/checkout@master
       - name: Set up JDK ${{ matrix.java }}
-        uses: actions/setup-java@v1
+        uses: actions/setup-java@v3
         with:
           java-version: ${{ matrix.java }}
+          distribution: temurin
       - name: before_install
         run: |
           sudo apt-get update -qq

Reply via email to