From 750101bd64a88eb6205afa4195d3448d223e423c Mon Sep 17 00:00:00 2001 From: Ryan Aslett Date: Sat, 27 Jun 2026 16:49:04 -0700 Subject: [PATCH] Update Java and Rust Signed-off-by: Ryan Aslett --- orka/templates/macos-test.pkr.hcl | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/orka/templates/macos-test.pkr.hcl b/orka/templates/macos-test.pkr.hcl index 49bbc1a48..7c6528cfe 100644 --- a/orka/templates/macos-test.pkr.hcl +++ b/orka/templates/macos-test.pkr.hcl @@ -38,7 +38,7 @@ variable "xcode_version" { variable "rust_version" { type = string - default = "1.82" + default = "1.88" description = "Rust toolchain version to install via rustup. Matches RUSTC_VERSION in nodejs/node test-macos.yml." } @@ -242,12 +242,12 @@ build { "${local.homebrew_path}/bin/pipx ensurepath" ] } - // Install Java 17 for Jenkins. + // Install Java 25 for Jenkins. provisioner "shell" { inline = [ "echo 'Installing JRE...'", "eval \"$(${local.homebrew_path}/bin/brew shellenv)\"", - "${local.homebrew_path}/bin/brew install --cask temurin@17", + "${local.homebrew_path}/bin/brew install --cask temurin@25", ] } // Install Rust via rustup (matches nodejs/node test-macos.yml RUSTC_VERSION).