From 910c444ecceb9481a1d434745bfe0afe7429ed93 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 17 Jun 2026 20:29:18 +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) - [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 | 12 ++++++------ .github/workflows/macos-release.yml | 2 +- .github/workflows/windows-release.yml | 2 +- 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index cd917fd8..c5833df7 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -25,7 +25,7 @@ jobs: container: image: ghcr.io/astral-sh/uv:python3.12-bookworm-slim steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 - run: uv sync --frozen --all-extras - run: uv run ruff check app/ tests/ - run: uv run ruff format --check app/ tests/ @@ -36,7 +36,7 @@ jobs: container: image: ghcr.io/astral-sh/uv:python3.12-bookworm-slim steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 - run: apt-get update && apt-get install -y --no-install-recommends ffmpeg - run: uv sync --frozen --all-extras - run: uv run pytest tests/ -q @@ -46,7 +46,7 @@ jobs: container: image: node:20-alpine steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 - run: for f in static/js/*.js; do node --check "$f"; done sast-bandit: @@ -54,7 +54,7 @@ jobs: container: image: ghcr.io/astral-sh/uv:python3.12-bookworm-slim steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 - run: uv tool install bandit - run: uv tool run bandit -r app/ -ll # fail on medium+ severity @@ -63,7 +63,7 @@ jobs: container: image: ghcr.io/astral-sh/uv:python3.12-bookworm-slim steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 - run: uv tool install pip-audit - run: uv pip compile pyproject.toml -o /tmp/requirements.txt # Ignored CVEs (review when upgrading torch or demucs): @@ -116,7 +116,7 @@ jobs: trivy: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 # Scans the source tree for: known CVEs in deps, leaked secrets, # and Dockerfile / compose misconfigurations. Skips .venv (it can # be left over from earlier steps in the shared workspace; trivy diff --git a/.github/workflows/macos-release.yml b/.github/workflows/macos-release.yml index 3f4ef556..04e223e3 100644 --- a/.github/workflows/macos-release.yml +++ b/.github/workflows/macos-release.yml @@ -27,7 +27,7 @@ jobs: - name: clean workspace run: rm -rf .build dist - - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 + - uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3 - name: write version files run: | diff --git a/.github/workflows/windows-release.yml b/.github/workflows/windows-release.yml index 48196c2c..7a72a46b 100644 --- a/.github/workflows/windows-release.yml +++ b/.github/workflows/windows-release.yml @@ -28,7 +28,7 @@ jobs: run: | Remove-Item -Recurse -Force .build, dist -ErrorAction SilentlyContinue - - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 + - uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3 - name: write version files run: |