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
2 changes: 1 addition & 1 deletion .github/actions/rust-setup/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ description: 'Setup Rust toolchain with dependencies, caching, and mold linker'
inputs:
toolchain:
description: 'Rust toolchain version'
default: '1.94.0'
default: '1.96.0'
components:
description: 'Rust components to install (comma-separated)'
default: ''
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/ci-ui.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,9 @@ jobs:
TURBO_TELEMETRY_DISABLED: true
steps:
- uses: actions/checkout@v6
- uses: pnpm/action-setup@v5
- uses: pnpm/action-setup@v6
with:
version: 11.1.3
version: 11.6.0
- name: Setup Node.js
uses: actions/setup-node@v6
with:
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/preview-dispatch.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
steps:
- name: Check write permission
id: perm
uses: actions/github-script@v8
uses: actions/github-script@v9
with:
result-encoding: string
script: |
Expand All @@ -42,7 +42,7 @@ jobs:

- name: Deny unauthorized user
if: steps.perm.outputs.result == 'false'
uses: actions/github-script@v8
uses: actions/github-script@v9
with:
script: |
await github.rest.issues.createComment({
Expand All @@ -54,7 +54,7 @@ jobs:

- name: React with rocket
if: steps.perm.outputs.result == 'true'
uses: actions/github-script@v8
uses: actions/github-script@v9
with:
script: |
await github.rest.reactions.createForIssueComment({
Expand All @@ -70,7 +70,7 @@ jobs:
steps.perm.outputs.result == 'true' &&
startsWith(github.event.comment.body, '/preview') &&
!startsWith(github.event.comment.body, '/stop-preview')
uses: actions/github-script@v8
uses: actions/github-script@v9
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
script: |
Expand All @@ -87,7 +87,7 @@ jobs:
if: |
steps.perm.outputs.result == 'true' &&
startsWith(github.event.comment.body, '/stop-preview')
uses: actions/github-script@v8
uses: actions/github-script@v9
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
script: |
Expand All @@ -105,7 +105,7 @@ jobs:
if: github.event_name == 'pull_request' && github.event.action == 'closed'
steps:
- name: Stop preview
uses: actions/github-script@v8
uses: actions/github-script@v9
with:
script: |
await github.rest.actions.createWorkflowDispatch({
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/preview-run.yml
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ jobs:

- uses: ./.github/actions/rust-setup

- uses: pnpm/action-setup@v5
- uses: pnpm/action-setup@v6
with:
version: 11
run_install: false
Expand Down
Loading
Loading