Skip to content

Commit cfbde06

Browse files
committed
- Update Github actions to address deprecation warnings.
1 parent b7851e4 commit cfbde06

2 files changed

Lines changed: 3 additions & 5 deletions

File tree

.github/workflows/mac.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ jobs:
5353
- name: Updating Homebrew Packages
5454
run : |
5555
brew upgrade
56-
brew remove openssl@1.1
56+
brew remove openssl@1.1 2>&1 | grep -v "configuration files have not been removed" || true
5757
# Clean up openssl@1.1 configuration files
5858
rm -rf /opt/homebrew/etc/openssl@1.1
5959

.github/workflows/windows.yml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -32,10 +32,6 @@
3232

3333
name: Build for Windows
3434

35-
# TODO: Remove this after June 2, 2026 when Node.js 24 becomes the default for GitHub Actions
36-
env:
37-
FORCE_JAVASCRIPT_ACTIONS_TO_NODE24: true
38-
3935
on:
4036
workflow_call:
4137
workflow_dispatch:
@@ -84,6 +80,8 @@ jobs:
8480
run: ls dist
8581

8682
- name: Sign Windows Executable
83+
env:
84+
FORCE_JAVASCRIPT_ACTIONS_TO_NODE24: true
8785
# Skip signing for pull requests as secrets aren't available
8886
if: ${{ github.event_name != 'pull_request' }}
8987
uses: skymatic/code-sign-action@v3

0 commit comments

Comments
 (0)