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
6 changes: 3 additions & 3 deletions .github/workflows/cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ jobs:
permissions:
contents: write
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v7
with:
# FULL history, not the default depth-1 shallow clone. A shallow
# HEAD pushed onto an EXISTING `release` is rejected as
Expand Down Expand Up @@ -161,8 +161,8 @@ jobs:
runs-on: ubuntu-latest
timeout-minutes: 15
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
- uses: actions/checkout@v7
- uses: actions/setup-python@v7
with:
python-version: "3.14"

Expand Down
18 changes: 9 additions & 9 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,8 +46,8 @@ jobs:
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
- uses: actions/checkout@v7
- uses: actions/setup-python@v7
with:
python-version: "3.14"
cache: pip
Expand Down Expand Up @@ -85,9 +85,9 @@ jobs:
- python: "3.12"
backend: flask
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v7

- uses: actions/setup-python@v5
- uses: actions/setup-python@v7
with:
python-version: ${{ matrix.python }}
cache: pip
Expand Down Expand Up @@ -183,14 +183,14 @@ jobs:
timeout-minutes: 25
needs: [test]
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v7

# The same build Render runs. A dependency-resolution failure surfaces
# here, at CI time — not at deploy time where the only signal is a
# dashboard log while the old image keeps serving.
- uses: docker/setup-buildx-action@v3
- uses: docker/setup-buildx-action@v4
- name: Build the production image
uses: docker/build-push-action@v6
uses: docker/build-push-action@v7
with:
context: .
tags: dash-mui-scheduler:ci
Expand Down Expand Up @@ -318,8 +318,8 @@ jobs:
# worth knowing the day it lands, and worth nobody's broken build at 2am.
continue-on-error: true
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
- uses: actions/checkout@v7
- uses: actions/setup-python@v7
with:
python-version: "3.14"
- run: pip install pip-audit
Expand Down
14 changes: 7 additions & 7 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ jobs:
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v7
with:
# Needed for the ancestry check below.
fetch-depth: 0
Expand Down Expand Up @@ -113,8 +113,8 @@ jobs:
runs-on: ubuntu-latest
timeout-minutes: 15
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
- uses: actions/checkout@v7
- uses: actions/setup-python@v7
with:
# The fleet Python, like every other encoding in this repo — the
# wheel this job publishes is built on the interpreter production
Expand Down Expand Up @@ -179,7 +179,7 @@ jobs:
print(f"ok: dash-mui-scheduler {installed}, bundle {bundle.stat().st_size} bytes")
PY

- uses: actions/upload-artifact@v4
- uses: actions/upload-artifact@v7
with:
name: dist
path: dist/
Expand Down Expand Up @@ -208,7 +208,7 @@ jobs:
echo "::error::Manual runs publish to TestPyPI only (dry_run: true). To release to PyPI, push a v* tag."
exit 1

- uses: actions/download-artifact@v4
- uses: actions/download-artifact@v8
with:
name: dist
path: dist/
Expand All @@ -232,8 +232,8 @@ jobs:
permissions:
contents: write
steps:
- uses: actions/checkout@v4
- uses: actions/download-artifact@v4
- uses: actions/checkout@v7
- uses: actions/download-artifact@v8
with:
name: dist
path: dist/
Expand Down