Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ on:
branches: [master]

env:
# Opt into Node.js 24 for GitHub Actions (actions/checkout@v4 and others
# Opt into Node.js 24 for GitHub Actions (actions/checkout@v6 and others
# still run on Node.js 20 by default, which is deprecated as of 2026-05-26).
# Node.js 24 will become the default on 2026-06-02.
FORCE_JAVASCRIPT_ACTIONS_TO_NODE24: true
Expand All @@ -23,7 +23,7 @@ jobs:
platform: [macos-latest, ubuntu-24.04]
runs-on: ${{ matrix.platform }}
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
- uses: dtolnay/rust-toolchain@stable
- uses: swatinem/rust-cache@v2

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ permissions:
contents: write

env:
# Opt into Node.js 24 for GitHub Actions (actions/checkout@v4 and others
# Opt into Node.js 24 for GitHub Actions (actions/checkout@v6 and others
# still run on Node.js 20 by default, which is deprecated as of 2026-05-26).
# Node.js 24 will become the default on 2026-06-02.
FORCE_JAVASCRIPT_ACTIONS_TO_NODE24: true
Expand All @@ -35,7 +35,7 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v6

- name: Install Rust stable
uses: dtolnay/rust-toolchain@stable
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/whisper-server.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ on:

env:
WHISPER_TAG: ${{ github.event.inputs.whisper_tag || 'v1.8.4' }}
# Opt into Node.js 24 for GitHub Actions (actions/checkout@v4 and others
# Opt into Node.js 24 for GitHub Actions (actions/checkout@v6 and others
# still run on Node.js 20 by default, which is deprecated as of 2026-05-26).
# Node.js 24 will become the default on 2026-06-02.
FORCE_JAVASCRIPT_ACTIONS_TO_NODE24: true
Expand Down Expand Up @@ -41,7 +41,7 @@ jobs:

steps:
- name: Checkout whisper.cpp
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
repository: ggml-org/whisper.cpp
ref: ${{ env.WHISPER_TAG }}
Expand Down