This is an automated email from the ASF dual-hosted git repository.
jamesfredley pushed a commit to branch 7.0.x
in repository https://gitbox.apache.org/repos/asf/grails-core.git
The following commit(s) were added to refs/heads/7.0.x by this push:
new 771d483924 Remove maximize-build-space step from workflow
771d483924 is described below
commit 771d483924c3757d49b10edd7964c9618661a172
Author: James Fredley <[email protected]>
AuthorDate: Sat Jan 31 22:28:11 2026 -0500
Remove maximize-build-space step from workflow
Delete the 'Maximize build space' action and its configuration from the
publish-docs GitHub Actions workflow. The removed block configured
root-reserve, swap-size and removal of several toolchains (dotnet, android,
haskell, CodeQL) and docker image pruning; the checkout step remains. This
simplifies the job and removes dependency on the external maximize-build-space
action.
---
.github/workflows/publish-docs.yml | 10 ----------
1 file changed, 10 deletions(-)
diff --git a/.github/workflows/publish-docs.yml
b/.github/workflows/publish-docs.yml
index 4c5bb752c4..a6324939bd 100644
--- a/.github/workflows/publish-docs.yml
+++ b/.github/workflows/publish-docs.yml
@@ -36,16 +36,6 @@ jobs:
steps:
- name: "📝 Store release version"
run: echo "VERSION=${VERSION}" >> "$GITHUB_ENV"
- - name: "⚙️ Maximize build space"
- uses:
easimon/maximize-build-space@c28619d8999a147d5e09c1199f84ff6af6ad5794
- with:
- root-reserve-mb: 6144 # Leave ~6 GB on root FS (default)
- swap-size-mb: 2048 # Allocate 2 GB swap (default: 4 GB; reduce
if not needed)
- remove-dotnet: 'true' # Remove .NET SDK (~3-4 GB savings)
- remove-android: 'true' # Remove Android tools (~2 GB savings)
- remove-haskell: 'true' # Remove Haskell (~1 GB savings)
- remove-codeql: 'true' # Remove CodeQL (~500 MB savings)
- remove-docker-images: 'false' # Prune Docker if used (~1-2 GB
savings)
- name: "📥 Checkout repository"
uses: actions/checkout@v5
with: