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