diff --git a/content/en/hosting-and-deployment/hosting-on-github/index.md b/content/en/hosting-and-deployment/hosting-on-github/index.md index 0f8c8b846..f44c9a127 100644 --- a/content/en/hosting-and-deployment/hosting-on-github/index.md +++ b/content/en/hosting-and-deployment/hosting-on-github/index.md @@ -102,7 +102,7 @@ jobs: build: runs-on: ubuntu-latest env: - HUGO_VERSION: 0.114.0 + HUGO_VERSION: 0.115.1 steps: - name: Install Hugo CLI run: | diff --git a/content/en/hugo-pipes/transpile-sass-to-css.md b/content/en/hugo-pipes/transpile-sass-to-css.md index 8a02326f3..13a806e7b 100644 --- a/content/en/hugo-pipes/transpile-sass-to-css.md +++ b/content/en/hugo-pipes/transpile-sass-to-css.md @@ -133,8 +133,8 @@ To install Dart Sass for your builds on GitLab Pages, the `.gitlab-ci.yml` file ```yaml variables: - HUGO_VERSION: 0.114.0 - DART_SASS_VERSION: 1.63.5 + HUGO_VERSION: 0.115.1 + DART_SASS_VERSION: 1.63.6 GIT_DEPTH: 0 GIT_STRATEGY: clone GIT_SUBMODULE_STRATEGY: recursive @@ -167,8 +167,8 @@ To install Dart Sass for your builds on Netlify, the `netlify.toml` file should ```toml [build.environment] -HUGO_VERSION = "0.114.0" -DART_SASS_VERSION = "1.63.5" +HUGO_VERSION = "0.115.1" +DART_SASS_VERSION = "1.63.6" TZ = "America/Los_Angeles" [build] @@ -184,7 +184,7 @@ command = """\ ### Example -To tranpile with Dart Sass, set `transpiler` to `dartsass` in the options map passed to `resources.ToCSS`. For example: +To transpile with Dart Sass, set `transpiler` to `dartsass` in the options map passed to `resources.ToCSS`. For example: ```go-html-template {{ $options := dict "transpiler" "dartsass" "targetPath" "css/style.css" }}