From 7fbb8e50650dd64858051f349e3f2eefa3a403af Mon Sep 17 00:00:00 2001 From: Wonsuk Choi Date: Wed, 22 Oct 2025 09:31:13 +0900 Subject: [PATCH] ci(.github/workflows): update 'actions/checkout' to v5 and 'actions/setup-node' to v6 --- .github/workflows/autofix.yml | 2 +- .github/workflows/ci.yml | 4 ++-- .github/workflows/release.yml | 4 ++-- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/autofix.yml b/.github/workflows/autofix.yml index 048d706..2f5e3d2 100644 --- a/.github/workflows/autofix.yml +++ b/.github/workflows/autofix.yml @@ -19,7 +19,7 @@ jobs: steps: - uses: actions/checkout@v5 - run: corepack enable - - uses: actions/setup-node@v4 + - uses: actions/setup-node@v6 with: cache: 'yarn' cache-dependency-path: 'yarn.lock' diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index a0eb278..fb8d74a 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -26,10 +26,10 @@ jobs: 'yarn workspace @overlay-kit/framer-motion-react-19 run build', ] steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - name: Install Node.js - uses: actions/setup-node@v4 + uses: actions/setup-node@v6 with: node-version-file: '.nvmrc' cache: 'yarn' diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index bf3a3c4..7e425f2 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -12,10 +12,10 @@ jobs: contents: write pull-requests: write steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - name: Install Node.js - uses: actions/setup-node@v4 + uses: actions/setup-node@v6 with: node-version-file: '.nvmrc' cache: 'yarn'