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.
This commit is contained in:
Max 2025-05-18 17:57:21 +08:00
parent eeac6bbf96
commit 4dbdb07efb
2 changed files with 5 additions and 5 deletions

View file

@ -7,7 +7,7 @@ on:
description: "Version tags"
env:
VERSION: 0.9.0
VERSION: 0.10.5
jobs:
build:

View file

@ -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 - && \