Skip to content
Merged
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
12 changes: 6 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,11 +23,11 @@ jobs:
steps:
- uses: actions/checkout@v6

- uses: pnpm/action-setup@v4
- uses: pnpm/action-setup@v5
with:
package_json_file: extension/package.json

- uses: actions/setup-node@v4
- uses: actions/setup-node@v6
with:
node-version: 24
cache: "pnpm"
Expand Down Expand Up @@ -63,11 +63,11 @@ jobs:
ref: ${{ steps.marimo-version.outputs.ref }}
path: marimo

- uses: pnpm/action-setup@v4
- uses: pnpm/action-setup@v5
with:
package_json_file: marimo-lsp/extension/package.json

- uses: actions/setup-node@v4
- uses: actions/setup-node@v6
with:
node-version: 24
cache: "pnpm"
Expand Down Expand Up @@ -116,11 +116,11 @@ jobs:

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

- uses: pnpm/action-setup@v4
- uses: pnpm/action-setup@v5
with:
package_json_file: marimo-lsp/extension/package.json

- uses: actions/setup-node@v4
- uses: actions/setup-node@v6
with:
node-version: 24
cache: "pnpm"
Expand Down
18 changes: 9 additions & 9 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:
with:
fetch-depth: 0

- uses: pnpm/action-setup@v4
- uses: pnpm/action-setup@v5
with:
package_json_file: extension/package.json

Expand Down Expand Up @@ -117,7 +117,7 @@ jobs:
# complexity. Using pip everywhere keeps the workflow simple and consistent.
# The speed difference is negligible for a single package install.
- name: Setup Python
uses: actions/setup-python@v5
uses: actions/setup-python@v6
with:
python-version: "3.x"

Expand Down Expand Up @@ -184,7 +184,7 @@ jobs:
# Install system uv for building sdist (bundled uv may be cross-compiled and not executable on the runner)
- uses: astral-sh/setup-uv@v7

- uses: pnpm/action-setup@v4
- uses: pnpm/action-setup@v5
with:
package_json_file: marimo-lsp/extension/package.json

Expand Down Expand Up @@ -221,7 +221,7 @@ jobs:
fi

- name: Upload artifact
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: dist-${{ matrix.target }}
path: marimo-lsp/extension/dist/
Expand Down Expand Up @@ -253,7 +253,7 @@ jobs:

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

- uses: pnpm/action-setup@v4
- uses: pnpm/action-setup@v5
with:
package_json_file: marimo-lsp/extension/package.json

Expand Down Expand Up @@ -291,7 +291,7 @@ jobs:
fi

- name: Upload artifact
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: dist-universal
path: marimo-lsp/extension/dist/
Expand All @@ -312,7 +312,7 @@ jobs:
node-version: 24

- name: Download all artifacts
uses: actions/download-artifact@v4
uses: actions/download-artifact@v8
with:
path: dist
merge-multiple: true
Expand Down Expand Up @@ -380,7 +380,7 @@ jobs:

- name: Notify Slack - Release Success
if: success() && github.event.pull_request.head.repo.fork == false
uses: slackapi/slack-github-action@v2.1.1
uses: slackapi/slack-github-action@v3.0.1
with:
webhook: ${{ secrets.SLACK_WEBHOOK_URL_RELEASES }}
webhook-type: incoming-webhook
Expand All @@ -400,7 +400,7 @@ jobs:

- name: Notify Slack - Release Failed
if: failure() && github.event.pull_request.head.repo.fork == false
uses: slackapi/slack-github-action@v2.1.1
uses: slackapi/slack-github-action@v3.0.1
with:
webhook: ${{ secrets.SLACK_WEBHOOK_URL_RELEASES }}
webhook-type: incoming-webhook
Expand Down
Loading