Skip to content

Commit 0188585

Browse files
🤗 Hugo 0.122.0 (#41)
2 parents b693acd + 0c59d26 commit 0188585

File tree

5 files changed

+11
-12
lines changed

5 files changed

+11
-12
lines changed

.github/workflows/cd.yml

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -62,9 +62,8 @@ jobs:
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

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ jobs:
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

hugo/cli.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
from sys import argv
1515
from sys import platform as sysplatform
1616

17-
HUGO_VERSION = "0.121.2"
17+
HUGO_VERSION = "0.122.0"
1818

1919
FILE_EXT = ".exe" if sysplatform == "win32" else ""
2020

scripts/ci/tools/linux/install_go.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@ yum install -y wget
77
arch=$(uname -m)
88

99
if [ "$arch" == "x86_64" ]; then
10-
tarball="go1.21.5.linux-amd64.tar.gz"
10+
tarball="go1.21.6.linux-amd64.tar.gz"
1111
elif [[ "$arch" == "aarch64" || "$arch" == "arm64" ]]; then
12-
tarball="go1.21.5.linux-arm64.tar.gz"
12+
tarball="go1.21.6.linux-arm64.tar.gz"
1313
else
1414
echo "Unsupported architecture: $arch"
1515
exit 1

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
from 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"
1717
HUGO_RELEASE = (
1818
f"https://github.com/gohugoio/hugo/archive/refs/tags/v{HUGO_VERSION}.tar.gz"
1919
)
@@ -23,7 +23,7 @@
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
2525
HUGO_CACHE_DIR = "hugo_cache"
26-
HUGO_SHA256 = "bbefa92a7ae9442f7acd082df3dca64f0d872264bb0ffb8bc582def4d5690a1b"
26+
HUGO_SHA256 = "7468280290ce43276e26f964b0cab234d2bf0546f80295890189054b98ffac38"
2727
FILE_EXT = ".exe" if sys.platform == "win32" else ""
2828

2929
# The vendor name is used to set the vendorInfo variable in the Hugo binary

0 commit comments

Comments
 (0)