diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index fda77325..d5ba498a 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -46,11 +46,11 @@ jobs: path: target - name: Test Docsy - run: make test-docsy + run: sudo make test-docsy - name: Test DocuAPI - run: make test-docuapi + run: sudo make test-docuapi - - name: Push egde images + - name: Push edge images if: "!startsWith(github.ref, 'refs/tags/')" run: make push-edge diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 6fb2bdfb..494847ee 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -41,10 +41,10 @@ jobs: path: target - name: Test Docsy - run: make test-docsy + run: sudo make test-docsy - name: Test DocuAPI - run: make test-docuapi + run: sudo make test-docuapi - name: Push images if: startsWith(github.ref, 'refs/tags/') diff --git a/.github/workflows/version_bump.yaml b/.github/workflows/version_bump.yaml index ed773019..8ab0fa21 100644 --- a/.github/workflows/version_bump.yaml +++ b/.github/workflows/version_bump.yaml @@ -1,4 +1,4 @@ -name: Hugo realease version bump +name: Hugo release version bump on: schedule: diff --git a/Makefile b/Makefile index 9a76903c..97f30479 100644 --- a/Makefile +++ b/Makefile @@ -43,7 +43,7 @@ bump: @RELEASE=$(version) bump src/bin/buildx: - @wget -q -O src/bin/buildx https://github.com/docker/buildx/releases/download/v0.9.1/buildx-v0.9.1.linux-amd64 + @wget -q -O src/bin/buildx https://github.com/docker/buildx/releases/download/v0.12.0/buildx-v0.12.0.linux-amd64 @chmod a+x src/bin/buildx @docker buildx create --use diff --git a/doc/template/README.md b/doc/template/README.md index 849f71a5..d94e32de 100644 --- a/doc/template/README.md +++ b/doc/template/README.md @@ -151,7 +151,7 @@ docker run --rm -it \ The extended edition is used in those images containing `ext` in the name. Except use of extended edition and additional tools are those images exactly the same as those using the normal edition. -Table of Hugo extention features and the version when images first support the feature: +Table of Hugo extension features and the version when images first support the feature: | Feature | Alpine | Debian | Ubuntu | | ------------- | ------ | ------ | ------ | @@ -204,7 +204,7 @@ Hugo images with Pandoc support are made available for users wanting to use Pand [Hugo triggers Pandoc](https://gohugo.io/content-management/formats/#additional-formats-through-external-helpers) with `pandoc --mathjax`. Some users may want to use other arguments, so to accommodate such a need is an alias `pandoc` created with the content of `HUGO_PANDOC` (default: `pandoc-default`) upon initiation. -The `pandoc` executable is renamed to `pandoc-default` as a new `pandoc` script is provided to hanle the `HUGO_PANDOC` evironment variable. +The `pandoc` executable is renamed to `pandoc-default` as a new `pandoc` script is provided to handle the `HUGO_PANDOC` environment variable. Example of explicit setting `pandoc` alias: diff --git a/src/bin/bump b/src/bin/bump index 0e43e078..616171d1 100755 --- a/src/bin/bump +++ b/src/bin/bump @@ -1,7 +1,7 @@ #!/bin/sh if [ ! $RELEASE ]; then - echo "Variabel \$RELEASE is not set." + echo "Variable \$RELEASE is not set." exit 1 fi diff --git a/src/files/_script/golang.sh b/src/files/_script/golang.sh index 32bff9fe..93f50b7e 100644 --- a/src/files/_script/golang.sh +++ b/src/files/_script/golang.sh @@ -6,7 +6,7 @@ set -e set -u # Variables -GOLANG_VERSION="1.21.2" +GOLANG_VERSION="1.21.5" # Architecture TARGETPLATFORM=${TARGETPLATFORM:-linux/amd64} diff --git a/src/files/_script/nodejs-glibc.sh b/src/files/_script/nodejs-glibc.sh index 54e95399..a610523c 100644 --- a/src/files/_script/nodejs-glibc.sh +++ b/src/files/_script/nodejs-glibc.sh @@ -6,7 +6,7 @@ set -e set -u # Variables -NODE_VERSION="20.8.0" +NODE_VERSION="21.4.0" # Architecture TARGETPLATFORM=${TARGETPLATFORM:-linux/amd64} diff --git a/src/files/_script/nodejs-musl.sh b/src/files/_script/nodejs-musl.sh index 1a7a85c1..a9b45ee2 100644 --- a/src/files/_script/nodejs-musl.sh +++ b/src/files/_script/nodejs-musl.sh @@ -6,7 +6,7 @@ set -e set -u # Variables -NODE_VERSION="20.8.0" +NODE_VERSION="21.4.0" # Architecture TARGETPLATFORM=${TARGETPLATFORM:-linux/amd64} diff --git a/src/files/_script/pandoc.sh b/src/files/_script/pandoc.sh index 90e768fe..5d74feb0 100644 --- a/src/files/_script/pandoc.sh +++ b/src/files/_script/pandoc.sh @@ -6,7 +6,7 @@ set -e set -u # Variables -PANDOC_VERSION="3.1.8" +PANDOC_VERSION="3.1.9" # Architecture TARGETPLATFORM=${TARGETPLATFORM:-linux/amd64}