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:
parent
eeac6bbf96
commit
4dbdb07efb
2 changed files with 5 additions and 5 deletions
2
.github/workflows/build-macos.yml
vendored
2
.github/workflows/build-macos.yml
vendored
|
|
@ -7,7 +7,7 @@ on:
|
||||||
description: "Version tags"
|
description: "Version tags"
|
||||||
|
|
||||||
env:
|
env:
|
||||||
VERSION: 0.9.0
|
VERSION: 0.10.5
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
build:
|
build:
|
||||||
|
|
|
||||||
|
|
@ -29,10 +29,10 @@ RUN apt-get update && \
|
||||||
apt-get install -y git && \
|
apt-get install -y git && \
|
||||||
apt-get install -y unzip
|
apt-get install -y unzip
|
||||||
|
|
||||||
# Install Go 1.24.0
|
# Install Go 1.24.3
|
||||||
RUN wget https://golang.org/dl/go1.24.0.linux-amd64.tar.gz && \
|
RUN wget https://golang.org/dl/go1.24.3.linux-amd64.tar.gz && \
|
||||||
tar -C /usr/local -xzf go1.24.0.linux-amd64.tar.gz && \
|
tar -C /usr/local -xzf go1.24.3.linux-amd64.tar.gz && \
|
||||||
rm go1.24.0.linux-amd64.tar.gz
|
rm go1.24.3.linux-amd64.tar.gz
|
||||||
|
|
||||||
# Install Node.js 18.x
|
# Install Node.js 18.x
|
||||||
RUN curl -fsSL https://deb.nodesource.com/setup_18.x | bash - && \
|
RUN curl -fsSL https://deb.nodesource.com/setup_18.x | bash - && \
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue