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 @@ -67,7 +67,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 @@ -179,8 +179,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
40 changes: 20 additions & 20 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,8 +51,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 All @@ -78,8 +78,8 @@ jobs:
runs-on: ubuntu-latest
timeout-minutes: 20
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 @@ -159,14 +159,14 @@ jobs:
timeout-minutes: 25
needs: [docs-tests]
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v7

# The same build Render runs. This is where a dependency-resolution
# failure surfaces — at CI time, not deploy time — and where a missing
# COPY line dies loudly instead of at gunicorn boot (LESSONS §19).
- 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-charts-docs:ci
Expand Down Expand Up @@ -284,9 +284,9 @@ jobs:
- dash: "4.4.1"
python: "3.12"
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 All @@ -295,7 +295,7 @@ jobs:
# component bundle and wrappers from source, so a broken webpack
# config or a component that stopped generating fails HERE, per
# supported environment, not on the next release.
- uses: actions/setup-node@v4
- uses: actions/setup-node@v7
with:
node-version: "20"

Expand Down Expand Up @@ -332,7 +332,7 @@ jobs:
- name: Smoke test
run: python scripts/smoke_test.py --json smoke-${{ matrix.dash }}-py${{ matrix.python }}.json

- uses: actions/upload-artifact@v4
- uses: actions/upload-artifact@v7
if: always()
with:
name: smoke-${{ matrix.dash }}-py${{ matrix.python }}
Expand All @@ -344,14 +344,14 @@ jobs:
runs-on: ubuntu-latest
timeout-minutes: 15
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v7
with:
# check_release.py compares the git commit times of the bundle and
# src/lib/components. A shallow clone can omit the commit that
# last touched one of them, turning the check into a false
# "no git history" skip.
fetch-depth: 0
- uses: actions/setup-python@v5
- uses: actions/setup-python@v7
with:
python-version: "3.12"

Expand Down Expand Up @@ -440,7 +440,7 @@ jobs:
echo "package.json=$PY_VER installed=$WHEEL_VER"
test "$PY_VER" = "$WHEEL_VER"

- uses: actions/upload-artifact@v4
- uses: actions/upload-artifact@v7
with:
name: dist
path: dist/
Expand All @@ -459,10 +459,10 @@ jobs:
# package's floor is not the docs site's.
python: ["3.9", "3.10", "3.11", "3.12", "3.13"]
steps:
- uses: actions/setup-python@v5
- uses: actions/setup-python@v7
with:
python-version: ${{ matrix.python }}
- uses: actions/download-artifact@v4
- uses: actions/download-artifact@v8
with:
name: dist
path: dist/
Expand Down Expand Up @@ -501,8 +501,8 @@ jobs:
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
- uses: actions/checkout@v7
- uses: actions/setup-node@v7
with:
node-version: "20"
# The committed bundle is what users actually load, and it is a build
Expand Down Expand Up @@ -533,8 +533,8 @@ jobs:
# red pip-audit now means something new landed. Keep it that way: fix
# the dependency, don't re-add continue-on-error or --ignore-vuln.
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
20 changes: 10 additions & 10 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,12 +31,12 @@ jobs:
name: Verify the tag
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v7
with:
# check_release.py compares git commit times of the bundle and the
# React source; a shallow clone turns that into a false skip.
fetch-depth: 0
- uses: actions/setup-python@v5
- uses: actions/setup-python@v7
with:
python-version: "3.12"

Expand All @@ -62,14 +62,14 @@ jobs:
runs-on: ubuntu-latest
needs: verify
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
- uses: actions/checkout@v7
- uses: actions/setup-python@v7
with:
python-version: "3.12"
# node makes the smoke test's JS syntax checks real — the committed
# bundle is what ships in the wheel, and check_release has already
# proven it fresh; no rebuild happens here.
- uses: actions/setup-node@v4
- uses: actions/setup-node@v7
with:
node-version: "20"

Expand All @@ -90,7 +90,7 @@ jobs:
python -m build
python -m twine check dist/*

- uses: actions/upload-artifact@v4
- uses: actions/upload-artifact@v7
with:
name: dist
path: dist/
Expand All @@ -110,7 +110,7 @@ jobs:
# checks. Without it trusted publishing fails with an opaque 403.
id-token: write
steps:
- uses: actions/download-artifact@v4
- uses: actions/download-artifact@v8
with:
name: dist
path: dist/
Expand All @@ -133,8 +133,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 All @@ -152,7 +152,7 @@ jobs:
fi
cat release-notes.md

- uses: softprops/action-gh-release@v2
- uses: softprops/action-gh-release@v3
with:
body_path: release-notes.md
files: dist/*
Expand Down
Loading