Merge pull request #1065 from crazy-max/undock-update

update undock to 0.12.0
This commit is contained in:
CrazyMax
2026-04-10 11:48:18 +02:00
committed by GitHub
3 changed files with 3 additions and 3 deletions

View File

@@ -29,7 +29,7 @@ const tmpDir = () => fs.mkdtempSync(path.join(process.env.TEMP || os.tmpdir(), '
beforeAll(async () => {
const undockInstall = new UndockInstall();
const undockBinPath = await undockInstall.download('v0.10.0', true);
const undockBinPath = await undockInstall.download('v0.12.0', true);
await undockInstall.install(undockBinPath);
const regclientInstall = new RegclientInstall();

View File

@@ -18,7 +18,7 @@ ARG NODE_VERSION=24
ARG DOCKER_VERSION=29.3
ARG BUILDX_VERSION=0.33.0
ARG COMPOSE_VERSION=5.1.1
ARG UNDOCK_VERSION=0.11.0
ARG UNDOCK_VERSION=0.12.0
ARG REGCTL_VERSION=v0.11.2
ARG COSIGN_VERSION=v3.0.5

View File

@@ -260,7 +260,7 @@ provision:
x86_64) arch=amd64;;
aarch64) arch=arm64;;
esac
url="https://github.com/crazy-max/undock/releases/download/v0.10.0/undock_0.10.0_linux_$arch.tar.gz"
url="https://github.com/crazy-max/undock/releases/download/v0.12.0/undock_0.12.0_linux_$arch.tar.gz"
wget "$url" -O /tmp/undock.tar.gz
tar -C /usr/local/bin -xvf /tmp/undock.tar.gz