diff --git a/application/docs/projects/github-actions-and-reusable-workflows/ci-github-container/CONTRIBUTING.md b/application/docs/projects/github-actions-and-reusable-workflows/ci-github-container/CONTRIBUTING.md
index 2b1fb6ca..206dad37 100644
--- a/application/docs/projects/github-actions-and-reusable-workflows/ci-github-container/CONTRIBUTING.md
+++ b/application/docs/projects/github-actions-and-reusable-workflows/ci-github-container/CONTRIBUTING.md
@@ -2,8 +2,8 @@
source_repo: hoverkraft-tech/ci-github-container
source_path: CONTRIBUTING.md
source_branch: main
-source_run_id: 24227868893
-last_synced: 2026-04-10T05:29:38.456Z
+source_run_id: 24253765536
+last_synced: 2026-04-10T16:51:50.902Z
---
# Contributing
diff --git a/application/docs/projects/github-actions-and-reusable-workflows/ci-github-container/_index.md b/application/docs/projects/github-actions-and-reusable-workflows/ci-github-container/_index.md
index 10aa0ec5..e740c1cf 100644
--- a/application/docs/projects/github-actions-and-reusable-workflows/ci-github-container/_index.md
+++ b/application/docs/projects/github-actions-and-reusable-workflows/ci-github-container/_index.md
@@ -8,4 +8,4 @@ description: Documentation for Ci Github Container
Documentation for the Ci Github Container project.
**Source Repository:** [hoverkraft-tech/ci-github-container](https://github.com/hoverkraft-tech/ci-github-container)
-**Last Synced:** 2026-04-10T05:29:38.456Z
\ No newline at end of file
+**Last Synced:** 2026-04-10T16:51:50.902Z
\ No newline at end of file
diff --git a/application/docs/projects/github-actions-and-reusable-workflows/ci-github-container/actions/docker/build-image/index.md b/application/docs/projects/github-actions-and-reusable-workflows/ci-github-container/actions/docker/build-image/index.md
index e38ca270..56042d7a 100644
--- a/application/docs/projects/github-actions-and-reusable-workflows/ci-github-container/actions/docker/build-image/index.md
+++ b/application/docs/projects/github-actions-and-reusable-workflows/ci-github-container/actions/docker/build-image/index.md
@@ -3,8 +3,8 @@ title: Build Image
source_repo: hoverkraft-tech/ci-github-container
source_path: actions/docker/build-image/README.md
source_branch: main
-source_run_id: 24227868893
-last_synced: 2026-04-10T05:29:38.456Z
+source_run_id: 24253765536
+last_synced: 2026-04-10T16:51:50.902Z
---
diff --git a/application/docs/projects/github-actions-and-reusable-workflows/ci-github-container/actions/docker/clean-images/index.md b/application/docs/projects/github-actions-and-reusable-workflows/ci-github-container/actions/docker/clean-images/index.md
index f91f7883..03c56352 100644
--- a/application/docs/projects/github-actions-and-reusable-workflows/ci-github-container/actions/docker/clean-images/index.md
+++ b/application/docs/projects/github-actions-and-reusable-workflows/ci-github-container/actions/docker/clean-images/index.md
@@ -3,8 +3,8 @@ title: Clean Images
source_repo: hoverkraft-tech/ci-github-container
source_path: actions/docker/clean-images/README.md
source_branch: main
-source_run_id: 24227868893
-last_synced: 2026-04-10T05:29:38.456Z
+source_run_id: 24253765536
+last_synced: 2026-04-10T16:51:50.902Z
---
diff --git a/application/docs/projects/github-actions-and-reusable-workflows/ci-github-container/actions/docker/cleanup-builder/index.md b/application/docs/projects/github-actions-and-reusable-workflows/ci-github-container/actions/docker/cleanup-builder/index.md
new file mode 100644
index 00000000..66ec77a8
--- /dev/null
+++ b/application/docs/projects/github-actions-and-reusable-workflows/ci-github-container/actions/docker/cleanup-builder/index.md
@@ -0,0 +1,106 @@
+---
+title: Cleanup Builder
+source_repo: hoverkraft-tech/ci-github-container
+source_path: actions/docker/cleanup-builder/README.md
+source_branch: main
+source_run_id: 24253765536
+last_synced: 2026-04-10T16:51:50.902Z
+---
+
+
+
+#  GitHub Action: Docker - Cleanup builder
+
+
+

+
+
+---
+
+
+
+
+## Overview
+
+Register a post-job step that removes a Docker Buildx builder after later post steps have finished.
+
+
+
+
+## Usage
+
+```yaml
+- uses: hoverkraft-tech/ci-github-container/actions/docker/cleanup-builder@bcbbcaff24e053e38ebab02dd0e41442df196719 # 0.32.0
+ with:
+ # Docker Buildx builder name to remove during post-job cleanup.
+ builder: ""
+
+ # Whether cleanup should run during the post-job phase.
+ # Default: `true`
+ enabled: true
+```
+
+
+
+
+## Inputs
+
+| **Input** | **Description** | **Required** | **Default** |
+| ------------- | ------------------------------------------------------------- | ------------ | ----------- |
+| **`builder`** | Docker Buildx builder name to remove during post-job cleanup. | **false** | - |
+| **`enabled`** | Whether cleanup should run during the post-job phase. | **false** | `true` |
+
+
+
+## Notes
+
+Use this action before other actions whose post-job hooks still need the builder. It is intended as a workaround for GitHub Actions runner behavior around post-step ordering in composite actions. See [actions/runner#1657](https://github.com/actions/runner/issues/1657).
+
+In practice, this means the built-in `docker/setup-buildx-action` cleanup can run too early for actions such as `docker/build-push-action` or `reproducible-containers/buildkit-cache-dance` that still access the builder during their own post-job hooks.
+
+This action works by registering its cleanup post hook earlier, so the runner executes it later than the post hooks that still need the builder.
+
+
+
+## Contributing
+
+Contributions are welcome! Please see the [contributing guidelines](https://github.com/hoverkraft-tech/ci-github-container/blob/main/CONTRIBUTING.md) for more details.
+
+
+
+
+## License
+
+This project is licensed under the MIT License.
+
+SPDX-License-Identifier: MIT
+
+Copyright © 2026 hoverkraft
+
+For more details, see the [license](http://choosealicense.com/licenses/mit/).
+
+
+
+
+[](https://github.com/marketplace/actions/docker---cleanup-builder)
+[](https://github.com/hoverkraft-tech/ci-github-container/releases)
+[](http://choosealicense.com/licenses/mit/)
+[](https://img.shields.io/github/stars/hoverkraft-tech/ci-github-container?style=social)
+[](https://github.com/hoverkraft-tech/ci-github-container/blob/main/CONTRIBUTING.md)
+
+
+
+
+
+
+
+
+
+
+
+
+---
+
+This documentation was automatically generated by [CI Dokumentor](https://github.com/hoverkraft-tech/ci-dokumentor).
+
+
diff --git a/application/docs/projects/github-actions-and-reusable-workflows/ci-github-container/actions/docker/create-images-manifests/index.md b/application/docs/projects/github-actions-and-reusable-workflows/ci-github-container/actions/docker/create-images-manifests/index.md
index f02aa13d..efc3b5b9 100644
--- a/application/docs/projects/github-actions-and-reusable-workflows/ci-github-container/actions/docker/create-images-manifests/index.md
+++ b/application/docs/projects/github-actions-and-reusable-workflows/ci-github-container/actions/docker/create-images-manifests/index.md
@@ -3,8 +3,8 @@ title: Create Images Manifests
source_repo: hoverkraft-tech/ci-github-container
source_path: actions/docker/create-images-manifests/README.md
source_branch: main
-source_run_id: 24227868893
-last_synced: 2026-04-10T05:29:38.456Z
+source_run_id: 24253765536
+last_synced: 2026-04-10T16:51:50.902Z
---
diff --git a/application/docs/projects/github-actions-and-reusable-workflows/ci-github-container/actions/docker/get-image-metadata/index.md b/application/docs/projects/github-actions-and-reusable-workflows/ci-github-container/actions/docker/get-image-metadata/index.md
index 51b5a973..73ffb2a5 100644
--- a/application/docs/projects/github-actions-and-reusable-workflows/ci-github-container/actions/docker/get-image-metadata/index.md
+++ b/application/docs/projects/github-actions-and-reusable-workflows/ci-github-container/actions/docker/get-image-metadata/index.md
@@ -3,8 +3,8 @@ title: Get Image Metadata
source_repo: hoverkraft-tech/ci-github-container
source_path: actions/docker/get-image-metadata/README.md
source_branch: main
-source_run_id: 24227868893
-last_synced: 2026-04-10T05:29:38.456Z
+source_run_id: 24253765536
+last_synced: 2026-04-10T16:51:50.902Z
---
diff --git a/application/docs/projects/github-actions-and-reusable-workflows/ci-github-container/actions/docker/get-image-name/index.md b/application/docs/projects/github-actions-and-reusable-workflows/ci-github-container/actions/docker/get-image-name/index.md
index a6db0a5c..da4ef495 100644
--- a/application/docs/projects/github-actions-and-reusable-workflows/ci-github-container/actions/docker/get-image-name/index.md
+++ b/application/docs/projects/github-actions-and-reusable-workflows/ci-github-container/actions/docker/get-image-name/index.md
@@ -3,8 +3,8 @@ title: Get Image Name
source_repo: hoverkraft-tech/ci-github-container
source_path: actions/docker/get-image-name/README.md
source_branch: main
-source_run_id: 24227868893
-last_synced: 2026-04-10T05:29:38.456Z
+source_run_id: 24253765536
+last_synced: 2026-04-10T16:51:50.902Z
---
diff --git a/application/docs/projects/github-actions-and-reusable-workflows/ci-github-container/actions/docker/prune-pull-requests-image-tags/index.md b/application/docs/projects/github-actions-and-reusable-workflows/ci-github-container/actions/docker/prune-pull-requests-image-tags/index.md
index 429b8dff..f2b714c5 100644
--- a/application/docs/projects/github-actions-and-reusable-workflows/ci-github-container/actions/docker/prune-pull-requests-image-tags/index.md
+++ b/application/docs/projects/github-actions-and-reusable-workflows/ci-github-container/actions/docker/prune-pull-requests-image-tags/index.md
@@ -3,8 +3,8 @@ title: Prune Pull Requests Image Tags
source_repo: hoverkraft-tech/ci-github-container
source_path: actions/docker/prune-pull-requests-image-tags/README.md
source_branch: main
-source_run_id: 24227868893
-last_synced: 2026-04-10T05:29:38.456Z
+source_run_id: 24253765536
+last_synced: 2026-04-10T16:51:50.902Z
---
diff --git a/application/docs/projects/github-actions-and-reusable-workflows/ci-github-container/actions/docker/setup/index.md b/application/docs/projects/github-actions-and-reusable-workflows/ci-github-container/actions/docker/setup/index.md
index 11e821f5..2544a0cd 100644
--- a/application/docs/projects/github-actions-and-reusable-workflows/ci-github-container/actions/docker/setup/index.md
+++ b/application/docs/projects/github-actions-and-reusable-workflows/ci-github-container/actions/docker/setup/index.md
@@ -3,8 +3,8 @@ title: Setup
source_repo: hoverkraft-tech/ci-github-container
source_path: actions/docker/setup/README.md
source_branch: main
-source_run_id: 24227868893
-last_synced: 2026-04-10T05:29:38.456Z
+source_run_id: 24253765536
+last_synced: 2026-04-10T16:51:50.902Z
---
@@ -75,6 +75,11 @@ Shared action to configure Docker tooling and OCI registry authentication.
#
# Default: `true`
setup-buildx: true
+
+ # Whether the Buildx builder should be removed during post-job cleanup.
+ #
+ # Default: `true`
+ buildx-cleanup: true
````
@@ -98,6 +103,7 @@ Shared action to configure Docker tooling and OCI registry authentication.
| **`built-images`** | Optional built images payload used to resolve manifest publication registries. | **false** | - |
| | When provided, registry authentication targets are inferred from the built image data. | | |
| **`setup-buildx`** | Whether to install and configure Docker Buildx. | **false** | `true` |
+| **`buildx-cleanup`** | Whether the Buildx builder should be removed during post-job cleanup. | **false** | `true` |
diff --git a/application/docs/projects/github-actions-and-reusable-workflows/ci-github-container/actions/docker/sign-images/index.md b/application/docs/projects/github-actions-and-reusable-workflows/ci-github-container/actions/docker/sign-images/index.md
index ad501632..ce22876d 100644
--- a/application/docs/projects/github-actions-and-reusable-workflows/ci-github-container/actions/docker/sign-images/index.md
+++ b/application/docs/projects/github-actions-and-reusable-workflows/ci-github-container/actions/docker/sign-images/index.md
@@ -3,8 +3,8 @@ title: Sign Images
source_repo: hoverkraft-tech/ci-github-container
source_path: actions/docker/sign-images/README.md
source_branch: main
-source_run_id: 24227868893
-last_synced: 2026-04-10T05:29:38.456Z
+source_run_id: 24253765536
+last_synced: 2026-04-10T16:51:50.902Z
---
diff --git a/application/docs/projects/github-actions-and-reusable-workflows/ci-github-container/actions/helm/generate-docs/index.md b/application/docs/projects/github-actions-and-reusable-workflows/ci-github-container/actions/helm/generate-docs/index.md
index 23f159fd..96bbe581 100644
--- a/application/docs/projects/github-actions-and-reusable-workflows/ci-github-container/actions/helm/generate-docs/index.md
+++ b/application/docs/projects/github-actions-and-reusable-workflows/ci-github-container/actions/helm/generate-docs/index.md
@@ -3,8 +3,8 @@ title: Generate Docs
source_repo: hoverkraft-tech/ci-github-container
source_path: actions/helm/generate-docs/README.md
source_branch: main
-source_run_id: 24227868893
-last_synced: 2026-04-10T05:29:38.456Z
+source_run_id: 24253765536
+last_synced: 2026-04-10T16:51:50.902Z
---
diff --git a/application/docs/projects/github-actions-and-reusable-workflows/ci-github-container/actions/helm/parse-chart-uri/index.md b/application/docs/projects/github-actions-and-reusable-workflows/ci-github-container/actions/helm/parse-chart-uri/index.md
index c057228d..bee20086 100644
--- a/application/docs/projects/github-actions-and-reusable-workflows/ci-github-container/actions/helm/parse-chart-uri/index.md
+++ b/application/docs/projects/github-actions-and-reusable-workflows/ci-github-container/actions/helm/parse-chart-uri/index.md
@@ -3,8 +3,8 @@ title: Parse Chart Uri
source_repo: hoverkraft-tech/ci-github-container
source_path: actions/helm/parse-chart-uri/README.md
source_branch: main
-source_run_id: 24227868893
-last_synced: 2026-04-10T05:29:38.456Z
+source_run_id: 24253765536
+last_synced: 2026-04-10T16:51:50.902Z
---
diff --git a/application/docs/projects/github-actions-and-reusable-workflows/ci-github-container/actions/helm/release-chart/index.md b/application/docs/projects/github-actions-and-reusable-workflows/ci-github-container/actions/helm/release-chart/index.md
index 398426db..71e68064 100644
--- a/application/docs/projects/github-actions-and-reusable-workflows/ci-github-container/actions/helm/release-chart/index.md
+++ b/application/docs/projects/github-actions-and-reusable-workflows/ci-github-container/actions/helm/release-chart/index.md
@@ -3,8 +3,8 @@ title: Release Chart
source_repo: hoverkraft-tech/ci-github-container
source_path: actions/helm/release-chart/README.md
source_branch: main
-source_run_id: 24227868893
-last_synced: 2026-04-10T05:29:38.456Z
+source_run_id: 24253765536
+last_synced: 2026-04-10T16:51:50.902Z
---
diff --git a/application/docs/projects/github-actions-and-reusable-workflows/ci-github-container/actions/helm/test-chart/index.md b/application/docs/projects/github-actions-and-reusable-workflows/ci-github-container/actions/helm/test-chart/index.md
index 87c11435..65d1ea42 100644
--- a/application/docs/projects/github-actions-and-reusable-workflows/ci-github-container/actions/helm/test-chart/index.md
+++ b/application/docs/projects/github-actions-and-reusable-workflows/ci-github-container/actions/helm/test-chart/index.md
@@ -3,8 +3,8 @@ title: Test Chart
source_repo: hoverkraft-tech/ci-github-container
source_path: actions/helm/test-chart/README.md
source_branch: main
-source_run_id: 24227868893
-last_synced: 2026-04-10T05:29:38.456Z
+source_run_id: 24253765536
+last_synced: 2026-04-10T16:51:50.902Z
---
@@ -43,7 +43,7 @@ Mainly using [helm/chart-testing-action](https://github.com/helm/chart-testing-a
## Usage
````yaml
-- uses: hoverkraft-tech/ci-github-container/actions/helm/test-chart@a0bab9151cc074af9f6c8204ab42a48d2d570379 # 0.30.6
+- uses: hoverkraft-tech/ci-github-container/actions/helm/test-chart@bcbbcaff24e053e38ebab02dd0e41442df196719 # 0.32.0
with:
# Working directory
# Default: `${{ github.workspace }}`
diff --git a/application/docs/projects/github-actions-and-reusable-workflows/ci-github-container/github/workflows/docker-build-images.md b/application/docs/projects/github-actions-and-reusable-workflows/ci-github-container/github/workflows/docker-build-images.md
index 5daa2e87..702194b1 100644
--- a/application/docs/projects/github-actions-and-reusable-workflows/ci-github-container/github/workflows/docker-build-images.md
+++ b/application/docs/projects/github-actions-and-reusable-workflows/ci-github-container/github/workflows/docker-build-images.md
@@ -2,8 +2,8 @@
source_repo: hoverkraft-tech/ci-github-container
source_path: .github/workflows/docker-build-images.md
source_branch: main
-source_run_id: 24227868893
-last_synced: 2026-04-10T05:29:38.456Z
+source_run_id: 24253765536
+last_synced: 2026-04-10T16:51:50.902Z
---
diff --git a/application/docs/projects/github-actions-and-reusable-workflows/ci-github-container/github/workflows/prune-pull-requests-images-tags.md b/application/docs/projects/github-actions-and-reusable-workflows/ci-github-container/github/workflows/prune-pull-requests-images-tags.md
index 9d739569..ee8811fa 100644
--- a/application/docs/projects/github-actions-and-reusable-workflows/ci-github-container/github/workflows/prune-pull-requests-images-tags.md
+++ b/application/docs/projects/github-actions-and-reusable-workflows/ci-github-container/github/workflows/prune-pull-requests-images-tags.md
@@ -2,8 +2,8 @@
source_repo: hoverkraft-tech/ci-github-container
source_path: .github/workflows/prune-pull-requests-images-tags.md
source_branch: main
-source_run_id: 24227868893
-last_synced: 2026-04-10T05:29:38.456Z
+source_run_id: 24253765536
+last_synced: 2026-04-10T16:51:50.902Z
---
diff --git a/application/docs/projects/github-actions-and-reusable-workflows/ci-github-container/index.md b/application/docs/projects/github-actions-and-reusable-workflows/ci-github-container/index.md
index affa8e9a..470e61a9 100644
--- a/application/docs/projects/github-actions-and-reusable-workflows/ci-github-container/index.md
+++ b/application/docs/projects/github-actions-and-reusable-workflows/ci-github-container/index.md
@@ -3,8 +3,8 @@ title: Ci Github Container
source_repo: hoverkraft-tech/ci-github-container
source_path: README.md
source_branch: main
-source_run_id: 24227868893
-last_synced: 2026-04-10T05:29:38.456Z
+source_run_id: 24253765536
+last_synced: 2026-04-10T16:51:50.902Z
---
@@ -33,6 +33,8 @@ _Actions that operate on OCI images across their build, metadata, and lifecycle
#### - [Build image](actions/docker/build-image/index.md)
+#### - [Cleanup builder](actions/docker/cleanup-builder/index.md)
+
#### - [Clean images](actions/docker/clean-images/index.md)
#### - [Create images manifests](actions/docker/create-images-manifests/index.md)
diff --git a/application/docs/projects/index.mdx b/application/docs/projects/index.mdx
index 0e39f32c..8da7813b 100644
--- a/application/docs/projects/index.mdx
+++ b/application/docs/projects/index.mdx
@@ -20,23 +20,25 @@ export const projectSections = [
icon: '⚡',
- title: 'ci-github-common',
+ title: 'ci-github-container',
- titleHref: 'https://github.com/hoverkraft-tech/ci-github-common',
+ titleHref: 'https://github.com/hoverkraft-tech/ci-github-container',
- meta: 'JavaScript • ⭐ 4 • Updated Apr 10, 2026',
+ meta: 'JavaScript • ⭐ 5 • Updated Apr 10, 2026',
- description: 'Opinionated GitHub actions and workflows for common continuous integration needs',
+ description: 'Opinionated GitHub Actions and workflows for continuous integration in container (OCI) context',
tags: [
- 'continuous-integration',
+ 'build',
- 'github-actions',
+ 'containers',
- 'open-source',
+ 'continuous-integration',
- 'workflow'
+ 'docker',
+
+ 'github-actions'
],
@@ -46,7 +48,7 @@ export const projectSections = [
label: 'View on GitHub',
- href: 'https://github.com/hoverkraft-tech/ci-github-common'
+ href: 'https://github.com/hoverkraft-tech/ci-github-container'
},
@@ -54,7 +56,7 @@ export const projectSections = [
label: 'Documentation',
- href: 'https://docs.hoverkraft.cloud/docs/projects/github-actions-and-reusable-workflows/ci-github-common/'
+ href: 'https://docs.hoverkraft.cloud/docs/projects/github-actions-and-reusable-workflows/ci-github-container/'
}
@@ -66,23 +68,23 @@ export const projectSections = [
icon: '⚡',
- title: 'compose-action',
+ title: 'ci-github-common',
- titleHref: 'https://github.com/hoverkraft-tech/compose-action',
+ titleHref: 'https://github.com/hoverkraft-tech/ci-github-common',
- meta: 'TypeScript • ⭐ 207 • Updated Apr 10, 2026',
+ meta: 'JavaScript • ⭐ 4 • Updated Apr 10, 2026',
- description: 'This action runs your docker-compose file and clean up before action finished',
+ description: 'Opinionated GitHub actions and workflows for common continuous integration needs',
tags: [
'continuous-integration',
- 'docker-compose',
-
'github-actions',
- 'open-source'
+ 'open-source',
+
+ 'workflow'
],
@@ -92,7 +94,7 @@ export const projectSections = [
label: 'View on GitHub',
- href: 'https://github.com/hoverkraft-tech/compose-action'
+ href: 'https://github.com/hoverkraft-tech/ci-github-common'
},
@@ -100,7 +102,7 @@ export const projectSections = [
label: 'Documentation',
- href: 'https://docs.hoverkraft.cloud/docs/projects/github-actions-and-reusable-workflows/compose-action/'
+ href: 'https://docs.hoverkraft.cloud/docs/projects/github-actions-and-reusable-workflows/ci-github-common/'
}
@@ -112,25 +114,23 @@ export const projectSections = [
icon: '⚡',
- title: 'ci-github-container',
+ title: 'compose-action',
- titleHref: 'https://github.com/hoverkraft-tech/ci-github-container',
+ titleHref: 'https://github.com/hoverkraft-tech/compose-action',
- meta: 'Go Template • ⭐ 5 • Updated Apr 10, 2026',
+ meta: 'TypeScript • ⭐ 207 • Updated Apr 10, 2026',
- description: 'Opinionated GitHub Actions and workflows for continuous integration in container (OCI) context',
+ description: 'This action runs your docker-compose file and clean up before action finished',
tags: [
- 'build',
-
- 'containers',
-
'continuous-integration',
- 'docker',
+ 'docker-compose',
- 'github-actions'
+ 'github-actions',
+
+ 'open-source'
],
@@ -140,7 +140,7 @@ export const projectSections = [
label: 'View on GitHub',
- href: 'https://github.com/hoverkraft-tech/ci-github-container'
+ href: 'https://github.com/hoverkraft-tech/compose-action'
},
@@ -148,7 +148,7 @@ export const projectSections = [
label: 'Documentation',
- href: 'https://docs.hoverkraft.cloud/docs/projects/github-actions-and-reusable-workflows/ci-github-container/'
+ href: 'https://docs.hoverkraft.cloud/docs/projects/github-actions-and-reusable-workflows/compose-action/'
}
@@ -1106,7 +1106,7 @@ export const projectSections = [
titleHref: 'https://github.com/hoverkraft-tech/landing-page',
- meta: 'Astro • ⭐ 2 • Updated Apr 8, 2026',
+ meta: 'Astro • ⭐ 2 • Updated Apr 10, 2026',
description: 'Landing Page of hoverkraft organization',
@@ -1360,7 +1360,7 @@ export const projectSnapshot = {
lastUpdated: '2026-04-10',
- technologiesSummary: 'including JavaScript, TypeScript, Go Template, Astro, Makefile, and more.'
+ technologiesSummary: 'including JavaScript, Astro, TypeScript, Makefile, HCL, and more.'
};
diff --git a/application/src/pages/index.tsx b/application/src/pages/index.tsx
index cbc67727..087837b7 100644
--- a/application/src/pages/index.tsx
+++ b/application/src/pages/index.tsx
@@ -109,7 +109,7 @@ function ProjectsSection() {
icon: '⚡',
url: 'https://github.com/hoverkraft-tech/ci-github-container',
stars: 5,
- language: 'Go Template',
+ language: 'JavaScript',
description: 'Opinionated GitHub Actions and workflows for continuous integration in container (OCI) context',
tags: [
'build',