From 8446144ec8e97070537a3d27830eacc0210980d5 Mon Sep 17 00:00:00 2001 From: Yuya Ebihara Date: Tue, 1 Apr 2025 09:38:01 +0900 Subject: [PATCH 1/2] Update Iceberg to 1.8.1 --- .DS_Store | Bin 0 -> 6148 bytes pom.xml | 6 ++++-- 2 files changed, 4 insertions(+), 2 deletions(-) create mode 100644 .DS_Store diff --git a/.DS_Store b/.DS_Store new file mode 100644 index 0000000000000000000000000000000000000000..e3939e71d118fe9f1ae377694e4889365efc4623 GIT binary patch literal 6148 zcmeHKJx{|h5Pfa~ieTx01RD`QfT}Y~r~)%mM;7{lN~N}`N?|1%I}^WvKY(CkVd#d$ zf`ph5JMb5{vkkRrVMGzSlkDf*`TXpc#;yUV>QSo#lmLWO7=s0>W*Eo0Oj*HtmIxJ( z(QQ|1&9pa|>M0IUKorQM0{ra;SVtQjjJ)qx4KLkTFHMq0H*JtFeA*uGhSl+=A8-8{ z9~?M)L*bcHF-N=|w6Kr5$BgocA9cAm8jol17n*5!=1rTef)Xs@I1uwrGWW0B3#VZv}87-fGCgy1$cjm zs4&JBGlP2Tph{l>2m^9!qc$I(oD*4$EoKHOLZ(bAp-ENtilIz8`6JsewwM_-=}?-P z#<9%G-cXcgCx4{7L&XNA76n8BUxA`|Eb;lj_4EDTPm(85Kos~_3aB8dB~@CIJzJ+1 x$7gLsWseFQ_sb0G6sqiTtQ&k3uTarOv4|UlvBk_FdC26CfR;fjQQ%J%_yA!}nw08 org.ebyhr.puffin.PuffinTools true - 1.1.0 + 1.8.1 + 2.18.2 + 2.0.16 @@ -94,4 +96,4 @@ - \ No newline at end of file + From bfcff22418a7a275d8a213bdbbe4d578763b603d Mon Sep 17 00:00:00 2001 From: Yuya Ebihara Date: Tue, 1 Apr 2025 09:40:46 +0900 Subject: [PATCH 2/2] Add GitHub Actions job --- .github/workflows/ci.yml | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 .github/workflows/ci.yml diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml new file mode 100644 index 0000000..0f885c3 --- /dev/null +++ b/.github/workflows/ci.yml @@ -0,0 +1,23 @@ +name: ci + +on: + push: + branches: + - master + pull_request: + branches: + - '**' + +jobs: + maven-checks: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - uses: actions/setup-java@v4 + with: + java-version: '17' + distribution: 'temurin' + cache: 'maven' + - name: Maven Checks + run: | + ./mvnw -B clean install -DskipTests