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
14 changes: 7 additions & 7 deletions .github/workflows/cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,11 +25,11 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
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 All @@ -61,7 +61,7 @@ jobs:
github.ref == 'refs/heads/main'
steps:
- name: Checkout repo
uses: actions/checkout@v5
uses: actions/checkout@v6

- name: Fetch tags
run: git fetch --tags
Expand All @@ -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
10 changes: 5 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,14 +22,14 @@ jobs:
name: Format
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
with:
fetch-depth: 0
- uses: actions/setup-python@v6
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 All @@ -48,7 +48,7 @@ jobs:
runs-on: [ubuntu-latest, windows-latest, macos-14]

steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
with:
fetch-depth: 0

Expand All @@ -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
Loading