File tree Expand file tree Collapse file tree 5 files changed +11
-12
lines changed
Expand file tree Collapse file tree 5 files changed +11
-12
lines changed Original file line number Diff line number Diff line change 6262 - name : Set up Go toolchain
6363 uses : actions/setup-go@v5
6464 with :
65- go-version : ' 1.21.x '
65+ go-version : ' 1.21.6 '
6666 cache : false
67- check-latest : true
6867
6968 - name : Install MinGW compiler(s)
7069 run : choco install mingw
@@ -109,9 +108,9 @@ jobs:
109108 CIBW_ARCHS_LINUX : x86_64
110109 CIBW_BEFORE_ALL_LINUX : >
111110 yum install -y wget &&
112- wget https://golang.org/dl/go1.21.5 .linux-amd64.tar.gz &&
111+ wget https://golang.org/dl/go1.21.6 .linux-amd64.tar.gz &&
113112 mkdir $HOME/go_installed &&
114- tar -C $HOME/go_installed/ -xzf go1.21.5 .linux-amd64.tar.gz &&
113+ tar -C $HOME/go_installed/ -xzf go1.21.6 .linux-amd64.tar.gz &&
115114 export PATH="$HOME/go_installed/go/bin:$PATH" &&
116115 go version
117116 CIBW_ENVIRONMENT_LINUX : PATH=$PATH:$HOME/go_installed/go/bin
@@ -219,7 +218,7 @@ jobs:
219218 - name : Set up Go toolchain
220219 uses : actions/setup-go@v5
221220 with :
222- go-version : ' 1.21.x '
221+ go-version : ' 1.21.6 '
223222 cache : false
224223 check-latest : true
225224
@@ -259,7 +258,7 @@ jobs:
259258 - name : Set up Go toolchain
260259 uses : actions/setup-go@v5
261260 with :
262- go-version : ' 1.21.x '
261+ go-version : ' 1.21.6 '
263262 cache : false
264263 check-latest : true
265264
Original file line number Diff line number Diff line change 5454 id : setup-go
5555 uses : actions/setup-go@v5
5656 with :
57- go-version : " 1.21.x "
57+ go-version : " 1.21.6 "
5858 cache : false
5959 check-latest : true
6060
Original file line number Diff line number Diff line change 1414from sys import argv
1515from sys import platform as sysplatform
1616
17- HUGO_VERSION = "0.121.2 "
17+ HUGO_VERSION = "0.122.0 "
1818
1919FILE_EXT = ".exe" if sysplatform == "win32" else ""
2020
Original file line number Diff line number Diff line change @@ -7,9 +7,9 @@ yum install -y wget
77arch=$( uname -m)
88
99if [ " $arch " == " x86_64" ]; then
10- tarball=" go1.21.5 .linux-amd64.tar.gz"
10+ tarball=" go1.21.6 .linux-amd64.tar.gz"
1111elif [[ " $arch " == " aarch64" || " $arch " == " arm64" ]]; then
12- tarball=" go1.21.5 .linux-arm64.tar.gz"
12+ tarball=" go1.21.6 .linux-arm64.tar.gz"
1313else
1414 echo " Unsupported architecture: $arch "
1515 exit 1
Original file line number Diff line number Diff line change 1313from wheel .bdist_wheel import bdist_wheel , get_platform
1414
1515# Has to be kept in sync with the version in hugo/cli.py and incantation of setup()
16- HUGO_VERSION = "0.121.2 "
16+ HUGO_VERSION = "0.122.0 "
1717HUGO_RELEASE = (
1818 f"https://github.com/gohugoio/hugo/archive/refs/tags/v{ HUGO_VERSION } .tar.gz"
1919)
2323# The pooch tool will download the tarball into the hugo_cache/ directory.
2424# We will point the build command to that location to build Hugo from source
2525HUGO_CACHE_DIR = "hugo_cache"
26- HUGO_SHA256 = "bbefa92a7ae9442f7acd082df3dca64f0d872264bb0ffb8bc582def4d5690a1b "
26+ HUGO_SHA256 = "7468280290ce43276e26f964b0cab234d2bf0546f80295890189054b98ffac38 "
2727FILE_EXT = ".exe" if sys .platform == "win32" else ""
2828
2929# The vendor name is used to set the vendorInfo variable in the Hugo binary
You can’t perform that action at this time.
0 commit comments