Skip to content
This repository was archived by the owner on May 30, 2026. It is now read-only.

Commit e41c766

Browse files
author
a.kaznacheev
committed
fix Node.js 20 deprecation: force all actions to use Node.js 24
softprops/action-gh-release has no Node.js 24 version yet (action.yml still declares node20 even in v2.5.0). Using FORCE_JAVASCRIPT_ACTIONS_TO_NODE24 env var to opt-in globally at workflow level. Made-with: Cursor
1 parent 951b86e commit e41c766

1 file changed

Lines changed: 4 additions & 1 deletion

File tree

.github/workflows/release.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,9 @@ on:
77
permissions:
88
contents: write
99

10+
env:
11+
FORCE_JAVASCRIPT_ACTIONS_TO_NODE24: true
12+
1013
jobs:
1114
build:
1215
strategy:
@@ -105,7 +108,7 @@ jobs:
105108
path: artifacts
106109

107110
- name: Create GitHub Release
108-
uses: softprops/action-gh-release@v2.5.0
111+
uses: softprops/action-gh-release@v2
109112
with:
110113
files: artifacts/*
111114
generate_release_notes: true

0 commit comments

Comments
 (0)