Merge pull request #961 from trheyi/main

chore: Update version and Go installation in CI workflows
This commit is contained in:
Max 2025-05-18 17:58:00 +08:00 committed by GitHub
commit 603cf5a180
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 5 additions and 5 deletions

View file

@ -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:

View file

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