File tree Expand file tree Collapse file tree 5 files changed +13
-13
lines changed Expand file tree Collapse file tree 5 files changed +13
-13
lines changed Original file line number Diff line number Diff line change @@ -105,7 +105,7 @@ jobs:
105105 # This tests the latest supported LLVM version when linking against system
106106 # libraries.
107107 docker :
108- - image : golang:1.25rc3 -bullseye
108+ - image : golang:1.25 -bullseye
109109 steps :
110110 - test-linux :
111111 llvm : " 20"
Original file line number Diff line number Diff line change 3939 - name : Install Go
4040 uses : actions/setup-go@v5
4141 with :
42- go-version : ' 1.25.0-rc.3 '
42+ go-version : ' 1.25.0'
4343 cache : true
4444 - name : Restore LLVM source cache
4545 uses : actions/cache/restore@v4
@@ -134,7 +134,7 @@ jobs:
134134 - name : Install Go
135135 uses : actions/setup-go@v5
136136 with :
137- go-version : ' 1.25.0-rc.3 '
137+ go-version : ' 1.25.0'
138138 cache : true
139139 - name : Build TinyGo (LLVM ${{ matrix.version }})
140140 run : go install -tags=llvm${{ matrix.version }}
Original file line number Diff line number Diff line change 1818 # statically linked binary.
1919 runs-on : ubuntu-latest
2020 container :
21- image : golang:1.25rc3 -alpine
21+ image : golang:1.25 -alpine
2222 outputs :
2323 version : ${{ steps.version.outputs.version }}
2424 steps :
@@ -137,7 +137,7 @@ jobs:
137137 - name : Install Go
138138 uses : actions/setup-go@v5
139139 with :
140- go-version : ' 1.25.0-rc.3 '
140+ go-version : ' 1.25.0'
141141 cache : true
142142 - name : Install wasmtime
143143 uses : bytecodealliance/actions/wasmtime/setup@v1
@@ -181,7 +181,7 @@ jobs:
181181 - name : Install Go
182182 uses : actions/setup-go@v5
183183 with :
184- go-version : ' 1.25.0-rc.3 '
184+ go-version : ' 1.25.0'
185185 cache : true
186186 - name : Install Node.js
187187 uses : actions/setup-node@v4
@@ -298,7 +298,7 @@ jobs:
298298 - name : Install Go
299299 uses : actions/setup-go@v5
300300 with :
301- go-version : ' 1.25.0-rc.3 '
301+ go-version : ' 1.25.0'
302302 cache : true
303303 - name : Restore LLVM source cache
304304 uses : actions/cache/restore@v4
Original file line number Diff line number Diff line change 4141 - name : Install Go
4242 uses : actions/setup-go@v5
4343 with :
44- go-version : ' 1.25.0-rc.3 '
44+ go-version : ' 1.25.0'
4545 cache : true
4646 - name : Restore cached LLVM source
4747 uses : actions/cache/restore@v4
@@ -147,7 +147,7 @@ jobs:
147147 - name : Install Go
148148 uses : actions/setup-go@v5
149149 with :
150- go-version : ' 1.25.0-rc.3 '
150+ go-version : ' 1.25.0'
151151 cache : true
152152 - name : Download TinyGo build
153153 uses : actions/download-artifact@v4
@@ -177,7 +177,7 @@ jobs:
177177 - name : Install Go
178178 uses : actions/setup-go@v5
179179 with :
180- go-version : ' 1.25.0-rc.3 '
180+ go-version : ' 1.25.0'
181181 cache : true
182182 - name : Download TinyGo build
183183 uses : actions/download-artifact@v4
@@ -213,7 +213,7 @@ jobs:
213213 - name : Install Go
214214 uses : actions/setup-go@v5
215215 with :
216- go-version : ' 1.25.0-rc.3 '
216+ go-version : ' 1.25.0'
217217 cache : true
218218 - name : Download TinyGo build
219219 uses : actions/download-artifact@v4
Original file line number Diff line number Diff line change 11# tinygo-llvm stage obtains the llvm source for TinyGo
2- FROM golang:1.25rc3 AS tinygo-llvm
2+ FROM golang:1.25 AS tinygo-llvm
33
44RUN apt-get update && \
55 apt-get install -y apt-utils make cmake clang-15 ninja-build && \
@@ -33,7 +33,7 @@ RUN cd /tinygo/ && \
3333
3434# tinygo-compiler copies the compiler build over to a base Go container (without
3535# all the build tools etc).
36- FROM golang:1.25rc3 AS tinygo-compiler
36+ FROM golang:1.25 AS tinygo-compiler
3737
3838# Copy tinygo build.
3939COPY --from=tinygo-compiler-build /tinygo/build/release/tinygo /tinygo
You can’t perform that action at this time.
0 commit comments