Skip to content

Commit 8d72f0d

Browse files
chore(deps): bump actions/checkout from 6 to 7 (#214)
Bumps [actions/checkout](https://github.com/actions/checkout) from 6 to 7. - [Release notes](https://github.com/actions/checkout/releases) - [Commits](actions/checkout@v6...v7) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent c95b42a commit 8d72f0d

4 files changed

Lines changed: 9 additions & 9 deletions

File tree

.github/workflows/ci.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
container:
2626
image: ghcr.io/astral-sh/uv:python3.12-bookworm-slim
2727
steps:
28-
- uses: actions/checkout@v6
28+
- uses: actions/checkout@v7
2929
- run: uv sync --frozen --all-extras
3030
- run: uv run ruff check app/ tests/
3131
- run: uv run ruff format --check app/ tests/
@@ -36,7 +36,7 @@ jobs:
3636
container:
3737
image: ghcr.io/astral-sh/uv:python3.12-bookworm-slim
3838
steps:
39-
- uses: actions/checkout@v6
39+
- uses: actions/checkout@v7
4040
- run: apt-get update && apt-get install -y --no-install-recommends ffmpeg
4141
- run: uv sync --frozen --all-extras
4242
- run: uv run pytest tests/ -q
@@ -46,15 +46,15 @@ jobs:
4646
container:
4747
image: node:20-alpine
4848
steps:
49-
- uses: actions/checkout@v6
49+
- uses: actions/checkout@v7
5050
- run: for f in static/js/*.js; do node --check "$f"; done
5151

5252
sast-bandit:
5353
runs-on: ubuntu-latest
5454
container:
5555
image: ghcr.io/astral-sh/uv:python3.12-bookworm-slim
5656
steps:
57-
- uses: actions/checkout@v6
57+
- uses: actions/checkout@v7
5858
- run: uv tool install bandit
5959
- run: uv tool run bandit -r app/ -ll # fail on medium+ severity
6060

@@ -63,7 +63,7 @@ jobs:
6363
container:
6464
image: ghcr.io/astral-sh/uv:python3.12-bookworm-slim
6565
steps:
66-
- uses: actions/checkout@v6
66+
- uses: actions/checkout@v7
6767
- run: uv tool install pip-audit
6868
- run: uv pip compile pyproject.toml -o /tmp/requirements.txt
6969
# Ignored CVEs (review when upgrading torch or demucs):
@@ -116,7 +116,7 @@ jobs:
116116
trivy:
117117
runs-on: ubuntu-latest
118118
steps:
119-
- uses: actions/checkout@v6
119+
- uses: actions/checkout@v7
120120
# Scans the source tree for: known CVEs in deps, leaked secrets,
121121
# and Dockerfile / compose misconfigurations. Skips .venv (it can
122122
# be left over from earlier steps in the shared workspace; trivy

.github/workflows/linux-release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
- name: clean workspace
3434
run: rm -rf .build dist
3535

36-
- uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
36+
- uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
3737

3838
- name: install build dependencies
3939
env:

.github/workflows/macos-release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
- name: clean workspace
2525
run: rm -rf .build dist
2626

27-
- uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
27+
- uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
2828

2929
- name: write version files
3030
env:

.github/workflows/windows-release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
run: |
3131
Remove-Item -Recurse -Force .build, dist -ErrorAction SilentlyContinue
3232
33-
- uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
33+
- uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
3434

3535
- name: write version files
3636
run: |

0 commit comments

Comments
 (0)