Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: mlugg/setup-zig
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: fa65c40
Choose a base ref
...
head repository: mlugg/setup-zig
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: e7d1537
Choose a head ref
  • 7 commits
  • 3,648 files changed
  • 3 contributors

Commits on Nov 28, 2025

  1. npm: remove direct dependency on unused package

    Our direct dependency on `@actions/exec` was removed in 274ad33,
    though we still depend on it indirectly.
    mlugg committed Nov 28, 2025
    Configuration menu
    Copy the full SHA
    c09d84c View commit details
    Browse the repository at this point in the history
  2. minisign: replace libsodium dependency with node:crypto

    We have this dependency anyway (since we're running on Node). This drops
    the problematic libsodium dependency so that the Action works on targets
    which libsodium doesn't support.
    
    Resolves: #56
    mlugg committed Nov 28, 2025
    Configuration menu
    Copy the full SHA
    1796bca View commit details
    Browse the repository at this point in the history
  3. npm update

    mlugg committed Nov 28, 2025
    Configuration menu
    Copy the full SHA
    7296b2b View commit details
    Browse the repository at this point in the history
  4. tests: fix typo in workflow

    mlugg committed Nov 28, 2025
    Configuration menu
    Copy the full SHA
    d91b47d View commit details
    Browse the repository at this point in the history

Commits on Nov 30, 2025

  1. Configuration menu
    Copy the full SHA
    7465018 View commit details
    Browse the repository at this point in the history

Commits on Dec 3, 2025

  1. Use cur_dev and min_dev in comparison versionLessThan

    The constant variables `cur_dev` and `min_dev` were added but never used in the comparison. This change is assuming this was by mistake. Otherwise `cur_dev` and `min_dev` are unused and should be removed.
    Kurt committed Dec 3, 2025
    Configuration menu
    Copy the full SHA
    43a69a5 View commit details
    Browse the repository at this point in the history

Commits on Dec 4, 2025

  1. Use named capture groups for version string matching

    Previously it was referencing the wrong group index (off by one), which is easy to do when relying on indices. Using capture groups here should make it less error prone (and also fixes this initial problem).
    
    Long term a small unit test should avoid this happening / regressing.
    Kurt committed Dec 4, 2025
    Configuration menu
    Copy the full SHA
    e7d1537 View commit details
    Browse the repository at this point in the history
Loading