Skip to content
Closed
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
10 changes: 5 additions & 5 deletions .github/workflows/cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
with:
fetch-depth: 0
- name: Set up Node.js
uses: actions/setup-node@v5
uses: actions/setup-node@v6
with:
node-version: "22.x"
- name: Install Node.js dependencies and build JS
Expand All @@ -39,7 +39,7 @@ jobs:
npm run build
# Upload the built JavaScript files as an artifact
- name: Upload JavaScript build artifacts
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: bundle.js
path: ./src/crumpy/bundle.js
Expand Down Expand Up @@ -72,15 +72,15 @@ jobs:
python-version: "3.x"

- name: Set up UV
uses: astral-sh/setup-uv@v6
uses: astral-sh/setup-uv@v7

- name: Install Pandoc
run: |
sudo apt-get update
sudo apt-get install -y pandoc

- name: Download JavaScript build artifacts
uses: actions/download-artifact@v5
uses: actions/download-artifact@v6
with:
name: bundle.js
path: src/crumpy
Expand Down Expand Up @@ -113,7 +113,7 @@ jobs:
if: github.event_name == 'release' && github.event.action == 'published'

steps:
- uses: actions/download-artifact@v5
- uses: actions/download-artifact@v6
with:
name: Packages
path: dist
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
with:
python-version: "3.x"

- uses: astral-sh/setup-uv@v6
- uses: astral-sh/setup-uv@v7

- uses: pre-commit/action@v3.0.1
with:
Expand Down Expand Up @@ -58,7 +58,7 @@ jobs:
allow-prereleases: true

- name: Set up Node.js
uses: actions/setup-node@v5
uses: actions/setup-node@v6
with:
node-version: "22.x"

Expand All @@ -68,7 +68,7 @@ jobs:
npm ci
npm run build

- uses: astral-sh/setup-uv@v6
- uses: astral-sh/setup-uv@v7

- name: Install package
run: uv sync
Expand Down