From 273f2ec178cf2ef892eaab60174eb58ce131c0d6 Mon Sep 17 00:00:00 2001 From: WATAHIKI Yuto Date: Thu, 14 May 2026 20:25:55 +0900 Subject: [PATCH 1/2] =?UTF-8?q?CI=E3=81=A8=E3=83=87=E3=83=97=E3=83=AD?= =?UTF-8?q?=E3=82=A4=E3=81=AE=E3=83=AF=E3=83=BC=E3=82=AF=E3=83=95=E3=83=AD?= =?UTF-8?q?=E3=83=BC=E3=82=92=E3=82=A2=E3=83=83=E3=83=97=E3=83=87=E3=83=BC?= =?UTF-8?q?=E3=83=88?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/ci.yml | 12 ++++++------ .github/workflows/deploy.yml | 9 +++++---- 2 files changed, 11 insertions(+), 10 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 4ce6af0..159acc8 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -12,12 +12,12 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout Code - uses: actions/checkout@v4 + uses: actions/checkout@v6 - name: Setup Node.js - uses: actions/setup-node@v3 + uses: actions/setup-node@v6 with: - node-version: latest + node-version-file: .nvmrc cache: npm - name: Install Packages @@ -33,12 +33,12 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout Code - uses: actions/checkout@v4 + uses: actions/checkout@v6 - name: Setup Node.js - uses: actions/setup-node@v3 + uses: actions/setup-node@v6 with: - node-version: latest + node-version-file: .nvmrc cache: npm - name: Install Packages diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index e9e28a8..46d2249 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -1,6 +1,7 @@ on: push: - branches: main + branches: + - main jobs: deploy: @@ -12,12 +13,12 @@ jobs: name: github-pages url: ${{ steps.deployment.outputs.page_url }} steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 with: fetch-depth: 0 - run: npm ci && npm run build - - uses: actions/upload-pages-artifact@v2 + - uses: actions/upload-pages-artifact@v4 with: path: build - id: deployment - uses: actions/deploy-pages@v2 + uses: actions/deploy-pages@v4 From 11bcc79d9851178386cb6dc70d34c8f41a2c5c6d Mon Sep 17 00:00:00 2001 From: WATAHIKI Yuto Date: Fri, 15 May 2026 12:50:32 +0900 Subject: [PATCH 2/2] =?UTF-8?q?=E3=83=87=E3=83=97=E3=83=AD=E3=82=A4?= =?UTF-8?q?=E3=81=AE=E3=83=AF=E3=83=BC=E3=82=AF=E3=83=95=E3=83=AD=E3=83=BC?= =?UTF-8?q?=E3=82=92=E4=BF=AE=E6=AD=A3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/deploy.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 46d2249..bb4d3cd 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -16,6 +16,10 @@ jobs: - uses: actions/checkout@v6 with: fetch-depth: 0 + - uses: actions/setup-node@v6 + with: + node-version-file: .nvmrc + cache: npm - run: npm ci && npm run build - uses: actions/upload-pages-artifact@v4 with: