Adding Abort to C# Websocket #12927
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Upgrade Version Check | |
| on: | |
| pull_request: | |
| types: [opened, synchronize] | |
| merge_group: | |
| permissions: read-all | |
| jobs: | |
| version_upgrade_check: | |
| runs-on: spacetimedb-new-runner | |
| container: | |
| image: localhost:5000/spacetimedb-ci:latest | |
| options: --privileged | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v3 | |
| # pnpm is required for regenerating the typescript bindings | |
| - name: Set up Node.js | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: 20 | |
| - uses: pnpm/action-setup@v4 | |
| with: | |
| run_install: true | |
| - name: Verify that upgrade-version still works | |
| run: cargo bump-versions 123.456.789 --rust-and-cli --csharp --typescript --accept-snapshots | |
| - name: Show diff | |
| run: git diff HEAD | |