From 2410e9ed64207078a3fbe884bc31ec403256de83 Mon Sep 17 00:00:00 2001 From: dmori Date: Sat, 21 Feb 2026 10:56:06 +0900 Subject: [PATCH 1/9] =?UTF-8?q?chore:=20actions/checkout=20=EB=B2=84?= =?UTF-8?q?=EC=A0=84=20=EC=B5=9C=EC=8B=A0=ED=99=94?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/cd.yml | 2 +- .github/workflows/ci.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/cd.yml b/.github/workflows/cd.yml index 13148559..20e48c02 100644 --- a/.github/workflows/cd.yml +++ b/.github/workflows/cd.yml @@ -16,7 +16,7 @@ jobs: steps: - name: Checkout code - uses: actions/checkout@v4 + uses: actions/checkout@v6 - name: Download JAR from CI uses: actions/download-artifact@v4 diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 60fbce60..0ad8319c 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -12,7 +12,7 @@ jobs: steps: - name: Checkout code - uses: actions/checkout@v4 + uses: actions/checkout@v6 - name: Set up JDK 17 uses: actions/setup-java@v4 From 5ca6268e398a940c66d3fbc4ad0f726c70a4578c Mon Sep 17 00:00:00 2001 From: dmori Date: Sat, 21 Feb 2026 10:59:40 +0900 Subject: [PATCH 2/9] =?UTF-8?q?chore:=20actions/setup-java=20=EB=B2=84?= =?UTF-8?q?=EC=A0=84=20=EC=B5=9C=EC=8B=A0=ED=99=94?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 0ad8319c..e24d26f6 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -15,7 +15,7 @@ jobs: uses: actions/checkout@v6 - name: Set up JDK 17 - uses: actions/setup-java@v4 + uses: actions/setup-java@v5 with: java-version: '17' distribution: 'temurin' From 9497741c1edce656f78f74f7e288a7756fbe0d7d Mon Sep 17 00:00:00 2001 From: dmori Date: Sat, 21 Feb 2026 11:01:32 +0900 Subject: [PATCH 3/9] =?UTF-8?q?chore:=20actions/setup-gradle=20=EB=B2=84?= =?UTF-8?q?=EC=A0=84=20=EC=B5=9C=EC=8B=A0=ED=99=94=20v3=20->=20v5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index e24d26f6..20265c67 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -21,7 +21,7 @@ jobs: distribution: 'temurin' - name: Setup Gradle - uses: gradle/actions/setup-gradle@v3 + uses: gradle/actions/setup-gradle@v5 - name: Grant execute permission for gradlew run: chmod +x ./gradlew From 0ca46e7b97a5f8238925270e86fcec58965f0176 Mon Sep 17 00:00:00 2001 From: dmori Date: Sat, 21 Feb 2026 11:02:13 +0900 Subject: [PATCH 4/9] =?UTF-8?q?chore:=20actions/upload-artifact=20?= =?UTF-8?q?=EB=B2=84=EC=A0=84=20=EC=B5=9C=EC=8B=A0=ED=99=94=20v4=20->=20v6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 20265c67..438c0fe7 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -35,7 +35,7 @@ jobs: run: ./gradlew build --no-daemon - name: Upload build artifact - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v6 with: name: tech-fork-jar path: build/libs/*.jar From 2837c75a4ba7d3ab1be0ceb0e2509376048bd6c8 Mon Sep 17 00:00:00 2001 From: dmori Date: Sat, 21 Feb 2026 11:04:55 +0900 Subject: [PATCH 5/9] =?UTF-8?q?chore:=20actions/download-artifact=20?= =?UTF-8?q?=EB=B2=84=EC=A0=84=20=EC=B5=9C=EC=8B=A0=ED=99=94=20v4=20->=20v7?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/cd.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/cd.yml b/.github/workflows/cd.yml index 20e48c02..16402fa8 100644 --- a/.github/workflows/cd.yml +++ b/.github/workflows/cd.yml @@ -19,7 +19,7 @@ jobs: uses: actions/checkout@v6 - name: Download JAR from CI - uses: actions/download-artifact@v4 + uses: actions/download-artifact@v7 with: name: tech-fork-jar path: build/libs/ From 60fe6a8414e8327104f05d8766c66db0cbd05e3c Mon Sep 17 00:00:00 2001 From: dmori Date: Sat, 21 Feb 2026 11:07:29 +0900 Subject: [PATCH 6/9] =?UTF-8?q?chore:=20docker/build-push-actions=20?= =?UTF-8?q?=EB=B2=84=EC=A0=84=20=EC=B5=9C=EC=8B=A0=ED=99=94=20v5=20->=20v6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/cd.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/cd.yml b/.github/workflows/cd.yml index 16402fa8..3615ac4a 100644 --- a/.github/workflows/cd.yml +++ b/.github/workflows/cd.yml @@ -44,7 +44,7 @@ jobs: password: ${{ secrets.DOCKERHUB_TOKEN }} - name: Build and push Docker image - uses: docker/build-push-action@v5 + uses: docker/build-push-action@v6 with: context: . platforms: linux/arm64 From 8d7b3cae74b37e6d7d9ca6856aa30dda825536f2 Mon Sep 17 00:00:00 2001 From: dmori Date: Sat, 21 Feb 2026 11:07:52 +0900 Subject: [PATCH 7/9] =?UTF-8?q?chore:=20actions/checkout=20=EB=B2=84?= =?UTF-8?q?=EC=A0=84=20=EC=B5=9C=EC=8B=A0=ED=99=94=20v4=20->=20v6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/cd.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/cd.yml b/.github/workflows/cd.yml index 3615ac4a..2121edb0 100644 --- a/.github/workflows/cd.yml +++ b/.github/workflows/cd.yml @@ -81,7 +81,7 @@ jobs: steps: - name: Checkout code - uses: actions/checkout@v4 + uses: actions/checkout@v6 - name: Copy deployment files to server uses: appleboy/scp-action@v0.1.7 From feb03b5ab7d1818875dab1ca1236af5d26681e29 Mon Sep 17 00:00:00 2001 From: dmori Date: Sat, 21 Feb 2026 11:09:06 +0900 Subject: [PATCH 8/9] =?UTF-8?q?chore:=20appleboy/scp-action=20=EB=B2=84?= =?UTF-8?q?=EC=A0=84=20=EC=B5=9C=EC=8B=A0=ED=99=94=20v0=20->=20v1?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/cd.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/cd.yml b/.github/workflows/cd.yml index 2121edb0..94a8f6c2 100644 --- a/.github/workflows/cd.yml +++ b/.github/workflows/cd.yml @@ -84,7 +84,7 @@ jobs: uses: actions/checkout@v6 - name: Copy deployment files to server - uses: appleboy/scp-action@v0.1.7 + uses: appleboy/scp-action@v1 with: host: ${{ secrets.EC2_HOST }} username: ${{ secrets.EC2_USERNAME }} From 160d787f67d0b9db22bfc37a708ac05895ecf671 Mon Sep 17 00:00:00 2001 From: dmori Date: Sat, 21 Feb 2026 11:10:07 +0900 Subject: [PATCH 9/9] =?UTF-8?q?chore:=20appleboy/ssh-action=20=EB=B2=84?= =?UTF-8?q?=EC=A0=84=20=ED=83=9C=EA=B7=B8=20=EC=82=AC=EC=9A=A9=EC=9C=BC?= =?UTF-8?q?=EB=A1=9C=20=EC=97=85=EB=8D=B0=EC=9D=B4=ED=8A=B8=20=EC=9E=90?= =?UTF-8?q?=EB=8F=99=20=EB=B0=98=EC=98=81?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/cd.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/cd.yml b/.github/workflows/cd.yml index 94a8f6c2..5e484c64 100644 --- a/.github/workflows/cd.yml +++ b/.github/workflows/cd.yml @@ -93,7 +93,7 @@ jobs: target: "~/deploy/" - name: Deploy with blue-green strategy - uses: appleboy/ssh-action@v1.0.3 + uses: appleboy/ssh-action@v1 with: host: ${{ secrets.EC2_HOST }} username: ${{ secrets.EC2_USERNAME }}