From 7fa3005932ae544ecea7b86b40cf0f0d7d3e92af Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Timoth=C3=A9e=20Bonnet?= <6604154+timotheenivalis@users.noreply.github.com> Date: Thu, 12 Feb 2026 10:26:00 +0100 Subject: [PATCH 1/7] Update hugo.yml test to see if removing cache avoids warning --- .github/workflows/hugo.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/hugo.yml b/.github/workflows/hugo.yml index bb62dc2..8b2a42a 100644 --- a/.github/workflows/hugo.yml +++ b/.github/workflows/hugo.yml @@ -37,6 +37,7 @@ jobs: uses: actions/setup-go@v5 with: go-version: '1.21.6' # + cache: false - name: setup Hugo run: sudo snap install hugo - name: Checkout From 1d72d6ba29c1fc95083d0ef199df5cd7e79c422b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Timoth=C3=A9e=20Bonnet?= <6604154+timotheenivalis@users.noreply.github.com> Date: Thu, 12 Feb 2026 10:31:08 +0100 Subject: [PATCH 2/7] Update hugo.yml also do checkout before setup go --- .github/workflows/hugo.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/hugo.yml b/.github/workflows/hugo.yml index 8b2a42a..a21d17f 100644 --- a/.github/workflows/hugo.yml +++ b/.github/workflows/hugo.yml @@ -33,15 +33,15 @@ jobs: env: HUGO_VERSION: 0.112.0 steps: + - name: Checkout + uses: actions/checkout@v6 - name: setup Go - uses: actions/setup-go@v5 + uses: actions/setup-go@v6 with: - go-version: '1.21.6' # + go-version: '1.23' # cache: false - name: setup Hugo run: sudo snap install hugo - - name: Checkout - uses: actions/checkout@v4 - name: Setup Pages id: pages uses: actions/configure-pages@v3 From 2faa447b2a7041a1609ba7b6f17dca74218db974 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Timoth=C3=A9e=20Bonnet?= <6604154+timotheenivalis@users.noreply.github.com> Date: Thu, 12 Feb 2026 10:35:01 +0100 Subject: [PATCH 3/7] Update hugo_test.yml parallel hugo_test --- .github/workflows/hugo_test.yml | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/.github/workflows/hugo_test.yml b/.github/workflows/hugo_test.yml index 458e588..d954b83 100644 --- a/.github/workflows/hugo_test.yml +++ b/.github/workflows/hugo_test.yml @@ -34,14 +34,15 @@ jobs: env: HUGO_VERSION: 0.112.0 steps: + - name: Checkout + uses: actions/checkout@v6 - name: setup Go - uses: actions/setup-go@v5 + uses: actions/setup-go@v6 with: - go-version: '1.21.6' # + go-version: '1.23' # + cache: false - name: setup Hugo run: sudo snap install hugo - - name: Checkout - uses: actions/checkout@v4 - name: Setup Pages id: pages uses: actions/configure-pages@v3 From 98e2f17c6fb6660aa5542d16a94d9bd245617671 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Timoth=C3=A9e=20Bonnet?= <6604154+timotheenivalis@users.noreply.github.com> Date: Thu, 12 Feb 2026 10:51:33 +0100 Subject: [PATCH 4/7] Update hugo.yml snap install --edge hugo --- .github/workflows/hugo.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/hugo.yml b/.github/workflows/hugo.yml index a21d17f..362a10e 100644 --- a/.github/workflows/hugo.yml +++ b/.github/workflows/hugo.yml @@ -41,7 +41,7 @@ jobs: go-version: '1.23' # cache: false - name: setup Hugo - run: sudo snap install hugo + run: snap install --edge hugo - name: Setup Pages id: pages uses: actions/configure-pages@v3 From 6554b52fd2cbcc445f0f19d75cdc2555710aa7cc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Timoth=C3=A9e=20Bonnet?= <6604154+timotheenivalis@users.noreply.github.com> Date: Thu, 12 Feb 2026 10:51:54 +0100 Subject: [PATCH 5/7] Update hugo_test.yml --- .github/workflows/hugo_test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/hugo_test.yml b/.github/workflows/hugo_test.yml index d954b83..92c03a7 100644 --- a/.github/workflows/hugo_test.yml +++ b/.github/workflows/hugo_test.yml @@ -42,7 +42,7 @@ jobs: go-version: '1.23' # cache: false - name: setup Hugo - run: sudo snap install hugo + run: snap install --edge hugo - name: Setup Pages id: pages uses: actions/configure-pages@v3 From 0843172f84d9fddeeb118cbbb4138b9124486f3e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Timoth=C3=A9e=20Bonnet?= <6604154+timotheenivalis@users.noreply.github.com> Date: Thu, 12 Feb 2026 10:52:59 +0100 Subject: [PATCH 6/7] Update hugo.yml sudo --- .github/workflows/hugo.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/hugo.yml b/.github/workflows/hugo.yml index 362a10e..dc90bec 100644 --- a/.github/workflows/hugo.yml +++ b/.github/workflows/hugo.yml @@ -41,7 +41,7 @@ jobs: go-version: '1.23' # cache: false - name: setup Hugo - run: snap install --edge hugo + run: sudo snap install --edge hugo - name: Setup Pages id: pages uses: actions/configure-pages@v3 From bbf7792225e7ab05565721f25aaff92e6377147e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Timoth=C3=A9e=20Bonnet?= <6604154+timotheenivalis@users.noreply.github.com> Date: Thu, 12 Feb 2026 10:53:23 +0100 Subject: [PATCH 7/7] Update hugo_test.yml sudo --- .github/workflows/hugo_test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/hugo_test.yml b/.github/workflows/hugo_test.yml index 92c03a7..a43ef9a 100644 --- a/.github/workflows/hugo_test.yml +++ b/.github/workflows/hugo_test.yml @@ -42,7 +42,7 @@ jobs: go-version: '1.23' # cache: false - name: setup Hugo - run: snap install --edge hugo + run: sudo snap install --edge hugo - name: Setup Pages id: pages uses: actions/configure-pages@v3