From 4dbdb07efb0b1000e775bb20811d2e44455c3158 Mon Sep 17 00:00:00 2001 From: Max Date: Sun, 18 May 2025 17:57:21 +0800 Subject: [PATCH] chore: Update version and Go installation in CI workflows - Bumped the version from 0.9.0 to 0.10.5 in the macOS build workflow. - Updated the Go installation in the Dockerfile from version 1.24.0 to 1.24.3 for improved compatibility and features. --- .github/workflows/build-macos.yml | 2 +- docker/build/Dockerfile | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/build-macos.yml b/.github/workflows/build-macos.yml index 7a350e66..0f408405 100644 --- a/.github/workflows/build-macos.yml +++ b/.github/workflows/build-macos.yml @@ -7,7 +7,7 @@ on: description: "Version tags" env: - VERSION: 0.9.0 + VERSION: 0.10.5 jobs: build: diff --git a/docker/build/Dockerfile b/docker/build/Dockerfile index 4c006b00..d5fbc981 100644 --- a/docker/build/Dockerfile +++ b/docker/build/Dockerfile @@ -29,10 +29,10 @@ RUN apt-get update && \ apt-get install -y git && \ apt-get install -y unzip -# Install Go 1.24.0 -RUN wget https://golang.org/dl/go1.24.0.linux-amd64.tar.gz && \ - tar -C /usr/local -xzf go1.24.0.linux-amd64.tar.gz && \ - rm go1.24.0.linux-amd64.tar.gz +# Install Go 1.24.3 +RUN wget https://golang.org/dl/go1.24.3.linux-amd64.tar.gz && \ + tar -C /usr/local -xzf go1.24.3.linux-amd64.tar.gz && \ + rm go1.24.3.linux-amd64.tar.gz # Install Node.js 18.x RUN curl -fsSL https://deb.nodesource.com/setup_18.x | bash - && \