From a95dfe3d054cf7fd0526ef8a6d91e342d48e18f5 Mon Sep 17 00:00:00 2001 From: tiennm99 Date: Fri, 18 Sep 2026 16:24:49 +0700 Subject: [PATCH] ci: drop the Go toolchain from Actions and Netlify Nothing in the repository needs Go any more. Kept as its own commit so a bisect can attribute a Hugo build break to this change rather than to the engine deletion. Node setup and the conditional npm ci stay: the lockfile exists, so the dependencies the engine now needs are installed if a workflow ever invokes it. --- .github/workflows/hugo.yml | 7 ------- netlify.toml | 1 - 2 files changed, 8 deletions(-) diff --git a/.github/workflows/hugo.yml b/.github/workflows/hugo.yml index 776df47..fcbb273 100644 --- a/.github/workflows/hugo.yml +++ b/.github/workflows/hugo.yml @@ -20,7 +20,6 @@ jobs: runs-on: ubuntu-latest env: DART_SASS_VERSION: 1.97.1 - GO_VERSION: 1.25.5 HUGO_VERSION: 0.154.0 NODE_VERSION: 24.12.0 TZ: Asia/Ho_Chi_Minh @@ -30,11 +29,6 @@ jobs: with: submodules: recursive fetch-depth: 0 - - name: Setup Go - uses: actions/setup-go@v6 - with: - go-version: ${{ env.GO_VERSION }} - cache: false - name: Setup Node.js uses: actions/setup-node@v6 with: @@ -61,7 +55,6 @@ jobs: - name: Verify installations run: | echo "Dart Sass: $(sass --version)" - echo "Go: $(go version)" echo "Hugo: $(hugo version)" echo "Node.js: $(node --version)" - name: Install Node.js dependencies diff --git a/netlify.toml b/netlify.toml index b451dd9..c15da50 100644 --- a/netlify.toml +++ b/netlify.toml @@ -1,6 +1,5 @@ [build.environment] DART_SASS_VERSION = "1.97.1" -GO_VERSION = "1.25.5" HUGO_VERSION = "0.154.0" NODE_VERSION = "24.12.0" TZ = "Asia/Ho_Chi_Minh"