From c76da58aa099dfa98b081ece23c039b14c81f3ed Mon Sep 17 00:00:00 2001 From: Seo Jin On <247078695+jinon86@users.noreply.github.com> Date: Fri, 10 Jul 2026 14:08:27 +0900 Subject: [PATCH 1/2] ci: adopt central Node.js 24 Actions --- .github/dependabot.yml | 15 +++++++++++++++ .github/workflows/ci.yml | 4 ++-- 2 files changed, 17 insertions(+), 2 deletions(-) create mode 100644 .github/dependabot.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 0000000..fce7d2f --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,15 @@ +version: 2 +updates: + - package-ecosystem: github-actions + directory: / + schedule: + interval: weekly + day: monday + time: "09:00" + timezone: Asia/Seoul + groups: + github-actions: + patterns: + - "*" + commit-message: + prefix: ci diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 006d558..96f4347 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -12,8 +12,8 @@ jobs: matrix: node-version: ['20', '22', '24'] steps: - - uses: actions/checkout@v4 - - uses: actions/setup-node@v4 + - uses: jinwon-int/github-workflows/actions/checkout@3b20bdaac0a4ba33dbeaa1dd105f1a05d381d636 # central Node24 + - uses: jinwon-int/github-workflows/actions/setup-node@3b20bdaac0a4ba33dbeaa1dd105f1a05d381d636 # central Node24 with: node-version: ${{ matrix.node-version }} cache: npm From ae58a75a000f784ea9c262c3a2dbd35830a05ac3 Mon Sep 17 00:00:00 2001 From: Seo Jin On <247078695+jinon86@users.noreply.github.com> Date: Fri, 10 Jul 2026 14:12:53 +0900 Subject: [PATCH 2/2] fix: use public Node.js 24 Action pins --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 96f4347..b5c5e91 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -12,8 +12,8 @@ jobs: matrix: node-version: ['20', '22', '24'] steps: - - uses: jinwon-int/github-workflows/actions/checkout@3b20bdaac0a4ba33dbeaa1dd105f1a05d381d636 # central Node24 - - uses: jinwon-int/github-workflows/actions/setup-node@3b20bdaac0a4ba33dbeaa1dd105f1a05d381d636 # central Node24 + - uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0 + - uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6.4.0 with: node-version: ${{ matrix.node-version }} cache: npm