Skip to content

Commit 27ff4ce

Browse files
montfortclaude
andauthored
ci: update GitHub Actions to Node.js 24 compatible versions (#36)
- actions/checkout v5 → v6 - actions/upload-artifact v5 → v7 - actions/download-artifact v5 → v8 Resolves Node.js 20 deprecation warnings (mandatory June 2026). Co-authored-by: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1 parent f1dd621 commit 27ff4ce

2 files changed

Lines changed: 5 additions & 5 deletions

File tree

.github/workflows/release-cli.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ jobs:
6767
archive: zip
6868

6969
steps:
70-
- uses: actions/checkout@v5
70+
- uses: actions/checkout@v6
7171
with:
7272
ref: ${{ needs.resolve-version.outputs.tag }}
7373

@@ -113,7 +113,7 @@ jobs:
113113
echo "ARCHIVE=$ARCHIVE" >> "$GITHUB_ENV"
114114
115115
- name: Upload binary artifact
116-
uses: actions/upload-artifact@v5
116+
uses: actions/upload-artifact@v7
117117
with:
118118
name: cli-${{ matrix.target }}
119119
path: ${{ env.ARCHIVE }}
@@ -123,10 +123,10 @@ jobs:
123123
needs: [resolve-version, build-cli]
124124
runs-on: ubuntu-latest
125125
steps:
126-
- uses: actions/checkout@v5
126+
- uses: actions/checkout@v6
127127

128128
- name: Download all artifacts
129-
uses: actions/download-artifact@v5
129+
uses: actions/download-artifact@v8
130130
with:
131131
path: release-artifacts
132132

.github/workflows/release-framework.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
name: Package Framework
1919
runs-on: ubuntu-latest
2020
steps:
21-
- uses: actions/checkout@v5
21+
- uses: actions/checkout@v6
2222
with:
2323
ref: ${{ github.event.inputs.tag || github.ref_name }}
2424

0 commit comments

Comments
 (0)