Skip to content

Commit 5e76f0a

Browse files
committed
lint.yml: actions/checkout を v4 (Node.js 20) → v6 (Node.js 24) に更新
GitHub Actions が 2026-09-16 に Node.js 20 を runner から削除予定。前ジョブで出ていた deprecation 警告を解消する。
1 parent 5b2ec0b commit 5e76f0a

2 files changed

Lines changed: 8 additions & 2 deletions

File tree

.github/workflows/lint.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
shellcheck:
1111
runs-on: ubuntu-latest
1212
steps:
13-
- uses: actions/checkout@v4
13+
- uses: actions/checkout@v6
1414

1515
- name: Install shellcheck
1616
run: sudo apt-get install -y shellcheck
@@ -21,7 +21,7 @@ jobs:
2121
zsh-syntax:
2222
runs-on: ubuntu-latest
2323
steps:
24-
- uses: actions/checkout@v4
24+
- uses: actions/checkout@v6
2525

2626
- name: Install zsh
2727
run: sudo apt-get install -y zsh

HISTORY.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# Change History
22

3+
## 2026-04-26 actions/checkout を v4 → v6 に更新
4+
5+
### .github/workflows/lint.yml
6+
- `actions/checkout@v4` (Node.js 20) → `actions/checkout@v6` (Node.js 24) に更新
7+
- なぜ: GitHub Actions が 2026-09-16 に Node.js 20 を runner から削除予定で、`@v4` のままだと将来動かなくなるため。初稼働時の deprecation 警告を解消
8+
39
## 2026-04-26 .gitignore の `.*` 一括除外を解消し CI ワークフローを追跡対象化
410

511
### .gitignore

0 commit comments

Comments
 (0)