Skip to content
Draft
Show file tree
Hide file tree
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 workflow-steps/install-java-if-present/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ writeFileSync('mise.toml', `[tools]\njava = "${javaVersion}"\n`, {
// --- inlined install-mise logic ---

const miseGhVersion =
process.env['NX_CLOUD_INPUT_mise-version'] || 'v2025.12.2';
process.env['NX_CLOUD_INPUT_mise-version'] || 'v2026.7.7';
const installArgs = process.env['NX_CLOUD_INPUT_install-args'] || '';

const MISE_INSTALL_DIR = '$HOME/.local/bin';
Expand Down
2 changes: 1 addition & 1 deletion workflow-steps/install-mise-if-present/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ const runInstall = process.env['NX_CLOUD_INPUT_auto-install']
? process.env['NX_CLOUD_INPUT_auto-install'] === 'true'
: true;
const miseGhVersion =
process.env['NX_CLOUD_INPUT_mise-version'] || 'v2025.12.2';
process.env['NX_CLOUD_INPUT_mise-version'] || 'v2026.7.7';
const installArgs = process.env['NX_CLOUD_INPUT_install-args'] || '';

const MISE_INSTALL_DIR = '$HOME/.local/bin';
Expand Down
4 changes: 2 additions & 2 deletions workflow-steps/install-mise/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
- name: Install mise
uses: 'nrwl/nx-cloud-workflows/v5/workflow-steps/install-mise/main.yaml'
inputs:
mise-version: 'v2025.10.19'
mise-version: 'v2026.7.7'
auto-install: true
tools: |
rust=1.90
Expand All @@ -19,7 +19,7 @@ Auto run install tools after installing the mise cli. Defaults to `true`.

#### mise-version

Version of mise to use based on the [GitHub Releases](https://github.com/jdx/mise/releases). Defaults to `v2025.12.2`.
Version of mise to use based on the [GitHub Releases](https://github.com/jdx/mise/releases). Defaults to `v2026.7.7`.

#### install-args

Expand Down
4 changes: 2 additions & 2 deletions workflow-steps/install-mise/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ const runInstall = process.env['NX_CLOUD_INPUT_auto-install']
? process.env['NX_CLOUD_INPUT_auto-install'] === 'true'
: true;
const miseGhVersion =
process.env['NX_CLOUD_INPUT_mise-version'] || 'v2025.12.2';
process.env['NX_CLOUD_INPUT_mise-version'] || 'v2026.7.7';
const installArgs = process.env['NX_CLOUD_INPUT_install-args'] || '';
const inlineToolDef = process.env['NX_CLOUD_INPUT_tools'] || '';

Expand Down Expand Up @@ -59,7 +59,7 @@ function retryWithBackoff(
if (!miseGhVersion.startsWith('v')) {
console.error(`Invalid mise_version: ${miseGhVersion}`);
console.error(
`mise_version must start with 'v', e.g., 'v2025.10.19'. Got ${miseGhVersion}`,
`mise_version must start with 'v', e.g., 'v2026.7.7'. Got ${miseGhVersion}`,
);
console.error(
'View available versions at https://github.com/jdx/mise/releases',
Expand Down
2 changes: 1 addition & 1 deletion workflow-steps/install-mise/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ inputs:
default: true
- name: mise-version
description: 'Version of mise to use based on the GitHub Releases: https://github.com/jdx/mise/releases'
default: 'v2025.12.2'
default: 'v2026.7.7'
- name: tools
description: 'Inline definition of tools to be installed. Tools are defined by a newline separated list where each line defines a tool and version separated by a =, @ or space,`<name>=<version>. e.g. rust=1.90'
- name: install-args
Expand Down
Loading