From d55050b36ac42a2384358dfd6a412c3062220f85 Mon Sep 17 00:00:00 2001 From: piti6 Date: Wed, 15 Apr 2026 19:02:54 +0900 Subject: [PATCH] ci: update deprecated actions to v4 - actions/checkout v3 -> v4 - actions/upload-artifact v3 -> v4 - Use unique artifact names per language (required by upload-artifact v4) Co-Authored-By: Claude Opus 4.6 (1M context) --- .github/workflows/on_push.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/on_push.yml b/.github/workflows/on_push.yml index 8dc5a1c..4b6c988 100755 --- a/.github/workflows/on_push.yml +++ b/.github/workflows/on_push.yml @@ -10,15 +10,15 @@ jobs: # uses v2 Stable version # https://github.com/actions/checkout - name: checkout source - uses: actions/checkout@v3 + uses: actions/checkout@v4 # Build Artifacts - name: Build Japanese distribution file run: ./build-in-docker-epub.sh # Upload Distribution file - name: Upload distribution file to github artifacts - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: - name: Output documents + name: Output documents (Japanese) path: ./articles/*.pdf # Build English artifacts - name: Build English distribution file @@ -27,7 +27,7 @@ jobs: REVIEW_LANG: en # Upload English distribution file - name: Upload English distribution file to github artifacts - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: - name: Output documents + name: Output documents (English) path: ./articles/*.pdf