Skip to content

Commit 4213fbb

Browse files
chore(deps): update jdx/mise-action action to v4.2.4 (#594)
This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [jdx/mise-action](https://redirect.github.com/jdx/mise-action) | action | patch | `v4.2.3` → `v4.2.4` | --- ### Release Notes <details> <summary>jdx/mise-action (jdx/mise-action)</summary> ### [`v4.2.4`](https://redirect.github.com/jdx/mise-action/releases/tag/v4.2.4): : Reliable locking detection under forced color [Compare Source](https://redirect.github.com/jdx/mise-action/compare/v4.2.3...v4.2.4) A small patch release that fixes locking-support detection when workflows force colored output. ##### Fixed ##### Detect `mise install --locked` reliably under forced color ([#&#8203;580](https://redirect.github.com/jdx/mise-action/pull/580) by [@&#8203;scop](https://redirect.github.com/scop)) When colored output was forced globally (for example via `CLICOLOR_FORCE=1`), ANSI escape codes in `mise install --help` prevented the action from matching `--locked` in the help text, so locking support was reported as unavailable even on versions of mise that supported it. The help probe now runs with `NO_COLOR=1` in its environment, which overrides `CLICOLOR_FORCE` and guarantees plain-text output for the feature detection — regardless of the surrounding workflow's color settings. **Full Changelog**: <v4.2.3...v4.2.4> </details> --- ### Configuration 📅 **Schedule**: (in timezone America/Chicago) - Branch creation - Only on Tuesday (`* * * * 2`) - Automerge - At any time (no schedule defined) 🚦 **Automerge**: Enabled. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR was generated by [Mend Renovate](https://mend.io/renovate/). View the [repository job log](https://developer.mend.io/github/jdx/mise-action). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0NC4yNC4wIiwidXBkYXRlZEluVmVyIjoiNDQuMjQuMCIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOltdfQ==--> --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
1 parent 672dbd2 commit 4213fbb

5 files changed

Lines changed: 6 additions & 6 deletions

File tree

.github/workflows/check-dist.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
with:
3636
persist-credentials: false
3737

38-
- uses: jdx/mise-action@9e7f7633ff6f6d6048a9418a68d48f288f50eb14 # v4.2.3
38+
- uses: jdx/mise-action@7e36c90d9ab29c415a2384db3006f3ec8a8cc654 # v4.2.4
3939

4040
- name: Install Dependencies
4141
id: install

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
# `.npmrc` pins `node-linker=hoisted` so the layout is
3333
# npm-flat (rollup's `--configPlugin` resolution
3434
# requires this).
35-
- uses: jdx/mise-action@9e7f7633ff6f6d6048a9418a68d48f288f50eb14 # v4.2.3
35+
- uses: jdx/mise-action@7e36c90d9ab29c415a2384db3006f3ec8a8cc654 # v4.2.4
3636
with:
3737
cache: false
3838

.github/workflows/release-plz.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
submodules: recursive
2828
token: ${{ secrets.RELEASE_PLZ_GITHUB_TOKEN }}
2929
persist-credentials: false
30-
- uses: jdx/mise-action@9e7f7633ff6f6d6048a9418a68d48f288f50eb14 # v4.2.3
30+
- uses: jdx/mise-action@7e36c90d9ab29c415a2384db3006f3ec8a8cc654 # v4.2.4
3131
- run: mise run release-plz
3232
env:
3333
DRY_RUN: 0

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
persist-credentials: false
2323

2424
- name: Setup mise
25-
uses: jdx/mise-action@9e7f7633ff6f6d6048a9418a68d48f288f50eb14 # v4.2.3
25+
uses: jdx/mise-action@7e36c90d9ab29c415a2384db3006f3ec8a8cc654 # v4.2.4
2626

2727
- name: Release
2828
run: ./scripts/postversion.sh
@@ -39,7 +39,7 @@ jobs:
3939
with:
4040
fetch-depth: 0
4141
persist-credentials: false
42-
- uses: jdx/mise-action@9e7f7633ff6f6d6048a9418a68d48f288f50eb14 # v4.2.3
42+
- uses: jdx/mise-action@7e36c90d9ab29c415a2384db3006f3ec8a8cc654 # v4.2.4
4343
- name: Enhance release notes with communique
4444
run: |
4545
TAG_NAME="v$(jq -r .version package.json)"

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
2323
with:
2424
persist-credentials: false
25-
- uses: jdx/mise-action@9e7f7633ff6f6d6048a9418a68d48f288f50eb14 # v4.2.3
25+
- uses: jdx/mise-action@7e36c90d9ab29c415a2384db3006f3ec8a8cc654 # v4.2.4
2626
- run: aube install
2727
- run: aubr all
2828
test: # make sure the action works on a clean machine without building

0 commit comments

Comments
 (0)