Skip to content
Merged
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 action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -242,7 +242,7 @@ runs:
- name: Setup nu shell
# I'm done writing everything twice (in bash and powershell)
# With nu shell, we use the same shell/script for all platforms
uses: hustcer/setup-nu@985d59ec83ae3e3418f9d36471cda38b9d8b9879 # v3.20.0
uses: hustcer/setup-nu@3a97c8160c2bb5af321a03336e7addc28f94444e # v3.20.0
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
uses: hustcer/setup-nu@3a97c8160c2bb5af321a03336e7addc28f94444e # v3.20.0
uses: hustcer/setup-nu@3a97c8160c2bb5af321a03336e7addc28f94444e # v3.21

For some reason, this action doesn't use a patch version, just major and minor.

Copy link
Collaborator

@2bndy5 2bndy5 Oct 27, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I also found a way to install nushell without this action: cargo-binstall can download/install nushell from the GitHub release assets. It would involve another bash/powershell script to install cargo-binstall. afterward it would be a simple step:

- name: Install cargo-binstall (unix)
  shell: bash
  run: >-
    curl -L --proto '=https' --tlsv1.2 -sSf
    https://raw.githubusercontent.com/cargo-bins/cargo-binstall/main/install-from-binstall-release.sh
    | bash
- name: Install cargo-binstall (windows)
  run: >-
    Set-ExecutionPolicy Unrestricted -Scope Process;
    iex (iwr
    "https://raw.githubusercontent.com/cargo-bins/cargo-binstall/main/install-from-binstall-release.ps1").Content
- name: Install nushell
  env:
    NUSHELL_VERSION: "0.108.0"
  run: cargo binstall nu@${NUSHELL_VERSION}

TBH, I'm leaning toward cargo-binstall for v3 to install cpp-linter-rs anyway.

with:
version: '0.106.1'

Expand Down
Loading