From 647da2b48d5afc952fdcba25a8b03fa1735c9242 Mon Sep 17 00:00:00 2001 From: dasomel Date: Wed, 20 May 2026 12:50:35 +0900 Subject: [PATCH 1/2] ci: trigger workflow on 5.0.x branch and upgrade deprecated actions - Add "5.0.x" to push and pull_request branch filters so PRs against the active 5.x development branch are built. - Upgrade actions/checkout v3 to v4 (v3 reached end-of-support). - Upgrade actions/setup-java v3 to v4. - Replace deprecated distribution "adopt" with "temurin" (Eclipse Adoptium renamed; "adopt" emits deprecation warnings). --- .github/workflows/maven.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/maven.yml b/.github/workflows/maven.yml index 8f168fa..827daa2 100644 --- a/.github/workflows/maven.yml +++ b/.github/workflows/maven.yml @@ -2,9 +2,9 @@ name: build-test on: push: - branches: [ "main" ] + branches: [ "main", "5.0.x" ] pull_request: - branches: [ "main" ] + branches: [ "main", "5.0.x" ] jobs: build: @@ -12,12 +12,12 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Set up JDK 17 - uses: actions/setup-java@v3 + uses: actions/setup-java@v4 with: java-version: '17' - distribution: 'adopt' + distribution: 'temurin' cache: maven - name: Build with Maven run: mvn -B package --file pom.xml -Dmaven.test.skip=true From 92d46dd3b3d47f827cb4b8a836943c9f4ccaf2fd Mon Sep 17 00:00:00 2001 From: dasomel Date: Fri, 29 May 2026 22:08:59 +0900 Subject: [PATCH 2/2] =?UTF-8?q?chore:=20CI=20=EC=9B=8C=ED=81=AC=ED=94=8C?= =?UTF-8?q?=EB=A1=9C=20dead=20config(5.0.x=20=EB=B8=8C=EB=9E=9C=EC=B9=98?= =?UTF-8?q?=20=ED=95=84=ED=84=B0)=20=EC=A0=9C=EA=B1=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/maven.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/maven.yml b/.github/workflows/maven.yml index 827daa2..7d92766 100644 --- a/.github/workflows/maven.yml +++ b/.github/workflows/maven.yml @@ -2,9 +2,9 @@ name: build-test on: push: - branches: [ "main", "5.0.x" ] + branches: [ "main" ] pull_request: - branches: [ "main", "5.0.x" ] + branches: [ "main" ] jobs: build: