From cab916c4b7d8523189612e49acf7a4d6b3590423 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 27 May 2026 02:45:52 +0000 Subject: [PATCH] chore(deps): bump actions/checkout from 4 to 6 Bumps [actions/checkout](https://github.com/actions/checkout) from 4 to 6. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v4...v6) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/ci.yml | 4 ++-- .github/workflows/release.yml | 4 ++-- .github/workflows/whisper-server.yml | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 2a3fc6f..cdcd2ed 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -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 @@ -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 diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 63368bc..c8cdc7e 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -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 @@ -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 diff --git a/.github/workflows/whisper-server.yml b/.github/workflows/whisper-server.yml index 053d835..ad5cd80 100644 --- a/.github/workflows/whisper-server.yml +++ b/.github/workflows/whisper-server.yml @@ -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 @@ -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 }}