-
Notifications
You must be signed in to change notification settings - Fork 3
v0.3.59 release (redux redux redux) #264
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,25 @@ | ||
| # Bundle the Dockerfile as an artifact for publish-docker.yml to consume. | ||
| # Exists as its own job because publish-docker.yml runs with caller-granted | ||
| # permissions that do not include `contents: read`, so it cannot check out | ||
| # the repo to read the Dockerfile itself. | ||
|
|
||
| name: "[tower] Bundle Docker context" | ||
|
|
||
| on: | ||
| workflow_call: | ||
| inputs: | ||
| plan: | ||
| required: true | ||
| type: string | ||
| workflow_dispatch: | ||
|
|
||
| jobs: | ||
| build-docker: | ||
| runs-on: ubuntu-latest | ||
| steps: | ||
| - uses: actions/checkout@v6 | ||
| - name: Upload Docker context | ||
| uses: actions/upload-artifact@v6 | ||
| with: | ||
| name: docker-context | ||
| path: Dockerfile |
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,34 @@ | ||
| # Build the tower-package-wasm npm package and upload it as an artifact for | ||
| # publish-npm.yml to consume. Exists as its own job because publish-npm.yml runs | ||
| # with caller-granted permissions that do not include `contents: read`, so it | ||
| # cannot check out the repo or build from source itself. | ||
|
|
||
| name: "[tower] Build wasm npm package" | ||
|
|
||
| on: | ||
| workflow_call: | ||
| inputs: | ||
| plan: | ||
| required: true | ||
| type: string | ||
| workflow_dispatch: | ||
|
|
||
| jobs: | ||
| build-wasm: | ||
| runs-on: ubuntu-latest | ||
| steps: | ||
| - uses: actions/checkout@v6 | ||
| with: | ||
| submodules: recursive | ||
| - uses: actions-rust-lang/setup-rust-toolchain@v1.11.0 | ||
| with: | ||
| target: wasm32-unknown-unknown | ||
| - uses: jetli/wasm-pack-action@v0.4.0 | ||
| - name: Build wasm package | ||
| working-directory: crates/tower-package | ||
| run: ./scripts/build.sh bundler | ||
| - name: Upload npm package | ||
| uses: actions/upload-artifact@v6 | ||
| with: | ||
| name: npm-package | ||
| path: crates/tower-package/pkg | ||
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
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
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
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
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🧩 Analysis chain
🌐 Web query:
What is the latest version of jetli/wasm-pack-action GitHub Action?💡 Result:
The latest version of the jetli/wasm-pack-action GitHub Action is v0.4.0.
Citations:
🌐 Web query:
What is the latest version of actions-rust-lang/setup-rust-toolchain GitHub Action?💡 Result:
The latest version of the actions-rust-lang/setup-rust-toolchain GitHub Action is v1.15.4, released on March 14, 2026.
Citations:
Update
actions-rust-lang/setup-rust-toolchainto v1.15.4.The workflow uses
actions-rust-lang/setup-rust-toolchain@v1.11.0, which is outdated. The latest version is v1.15.4 (released March 14, 2026). Meanwhile,jetli/wasm-pack-action@v0.4.0is already at the latest version. Update the Rust toolchain action to benefit from recent bug fixes and improvements.🤖 Prompt for AI Agents