Skip to content

Commit 6069e00

Browse files
authored
Use setup-node v4.4.0 instead of the latest with help comment for next version up (#241)
NO-ISSUE Use setup-node v4.4.0 instead of the latest with help comment for next version up
1 parent 9209336 commit 6069e00

File tree

3 files changed

+8
-2
lines changed

3 files changed

+8
-2
lines changed

.github/workflows/npm-audit.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,12 @@ jobs:
1616
issues: write
1717
if: github.repository == 'line/line-bot-mcp-server'
1818
steps:
19-
- uses: actions/checkout@ff7abcd0c3c05ccf6adc123a8cd1fd4fb30fb493
20-
- uses: actions/setup-node@a0853c24544627f65ddf259abe73b1d18a591444
19+
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
20+
- uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4.4.0
2121
with:
2222
node-version: '24'
23+
# Enable this when setup-node v5 is released
24+
# package-manager-cache: false
2325

2426
- name: Run npm audit and check diff
2527
id: audit

.github/workflows/release.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,8 @@ jobs:
2222
with:
2323
node-version: 24
2424
registry-url: 'https://registry.npmjs.org'
25+
# Enable this when setup-node v5 is released, and release is broken
26+
# package-manager-cache: false
2527
- run: npm install
2628
- name: Update version in package.json, package-lock.json
2729
run: |

.github/workflows/test.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,8 @@ jobs:
3131
with:
3232
node-version: ${{ matrix.node }}
3333
cache: 'npm'
34+
# Enable this when setup-node v5 is released, and release is broken
35+
# package-manager-cache: false
3436
- name: Install Dependency
3537
run: npm ci
3638
- name: Build

0 commit comments

Comments
 (0)