Skip to content

Commit 24c6a2d

Browse files
docs(hoverkraft-tech/ci-github-container): update documentation
Signed-off-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
1 parent 66ff325 commit 24c6a2d

19 files changed

Lines changed: 58 additions & 60 deletions

File tree

application/docs/projects/github-actions-and-reusable-workflows/ci-github-container/CONTRIBUTING.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
source_repo: hoverkraft-tech/ci-github-container
33
source_path: CONTRIBUTING.md
44
source_branch: main
5-
source_run_id: 28514459168
6-
last_synced: 2026-07-01T11:38:55.507Z
5+
source_run_id: 28518653656
6+
last_synced: 2026-07-01T12:55:05.115Z
77
---
88

99
# Contributing

application/docs/projects/github-actions-and-reusable-workflows/ci-github-container/actions/docker/build-image/index.md

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ title: Build Image
33
source_repo: hoverkraft-tech/ci-github-container
44
source_path: actions/docker/build-image/README.md
55
source_branch: main
6-
source_run_id: 28514459168
7-
last_synced: 2026-07-01T11:38:55.507Z
6+
source_run_id: 28518653656
7+
last_synced: 2026-07-01T12:55:05.115Z
88
---
99

1010
<!-- header:start -->
@@ -47,7 +47,6 @@ If default GitHub token is used, the following permissions are required:
4747

4848
```yml
4949
permissions:
50-
actions: write # Required for gha cache backend
5150
contents: read
5251
packages: write
5352
```
@@ -57,7 +56,7 @@ permissions:
5756
## Usage
5857
5958
````yaml
60-
- uses: hoverkraft-tech/ci-github-container/actions/docker/build-image@c9088e8447c5a8be45157e17701023fc50ccb1c0 # 0.37.2
59+
- uses: hoverkraft-tech/ci-github-container/actions/docker/build-image@cfc7074e26bbfbdf33f163d209d2c14957358152 # 0.38.0
6160
with:
6261
# OCI registry configuration used to pull, push and cache images.
6362
# Accepts either a registry hostname string (default format) or a JSON object.

application/docs/projects/github-actions-and-reusable-workflows/ci-github-container/actions/docker/clean-images/index.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ title: Clean Images
33
source_repo: hoverkraft-tech/ci-github-container
44
source_path: actions/docker/clean-images/README.md
55
source_branch: main
6-
source_run_id: 28514459168
7-
last_synced: 2026-07-01T11:38:55.507Z
6+
source_run_id: 28518653656
7+
last_synced: 2026-07-01T12:55:05.115Z
88
---
99

1010
<!-- header:start -->
@@ -55,7 +55,7 @@ permissions:
5555
## Usage
5656
5757
```yaml
58-
- uses: hoverkraft-tech/ci-github-container/actions/docker/clean-images@c9088e8447c5a8be45157e17701023fc50ccb1c0 # 0.37.2
58+
- uses: hoverkraft-tech/ci-github-container/actions/docker/clean-images@cfc7074e26bbfbdf33f163d209d2c14957358152 # 0.38.0
5959
with:
6060
# Comma-separated list of packages to cleanup.
6161
# Example: "application-1,application-2"
@@ -119,7 +119,7 @@ jobs:
119119
permissions:
120120
packages: write
121121
steps:
122-
- uses: hoverkraft-tech/ci-github-container/actions/docker/clean-images@c9088e8447c5a8be45157e17701023fc50ccb1c0 # 0.37.2
122+
- uses: hoverkraft-tech/ci-github-container/actions/docker/clean-images@cfc7074e26bbfbdf33f163d209d2c14957358152 # 0.38.0
123123
with:
124124
package: my-app
125125
delete-tags: pr-${{ github.event.pull_request.number }}-*
@@ -141,7 +141,7 @@ jobs:
141141
permissions:
142142
packages: write
143143
steps:
144-
- uses: hoverkraft-tech/ci-github-container/actions/docker/clean-images@c9088e8447c5a8be45157e17701023fc50ccb1c0 # 0.37.2
144+
- uses: hoverkraft-tech/ci-github-container/actions/docker/clean-images@cfc7074e26bbfbdf33f163d209d2c14957358152 # 0.38.0
145145
with:
146146
package: my-app
147147
delete-untagged: true

application/docs/projects/github-actions-and-reusable-workflows/ci-github-container/actions/docker/cleanup-builder/index.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ title: Cleanup Builder
33
source_repo: hoverkraft-tech/ci-github-container
44
source_path: actions/docker/cleanup-builder/README.md
55
source_branch: main
6-
source_run_id: 28514459168
7-
last_synced: 2026-07-01T11:38:55.507Z
6+
source_run_id: 28518653656
7+
last_synced: 2026-07-01T12:55:05.115Z
88
---
99

1010
<!-- header:start -->
@@ -30,7 +30,7 @@ Register a post-job step that removes a Docker Buildx builder after later post s
3030
## Usage
3131

3232
```yaml
33-
- uses: hoverkraft-tech/ci-github-container/actions/docker/cleanup-builder@c9088e8447c5a8be45157e17701023fc50ccb1c0 # 0.37.2
33+
- uses: hoverkraft-tech/ci-github-container/actions/docker/cleanup-builder@cfc7074e26bbfbdf33f163d209d2c14957358152 # 0.38.0
3434
with:
3535
# Docker Buildx builder name to remove during post-job cleanup.
3636
builder: ""

application/docs/projects/github-actions-and-reusable-workflows/ci-github-container/actions/docker/create-images-manifests/index.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ title: Create Images Manifests
33
source_repo: hoverkraft-tech/ci-github-container
44
source_path: actions/docker/create-images-manifests/README.md
55
source_branch: main
6-
source_run_id: 28514459168
7-
last_synced: 2026-07-01T11:38:55.507Z
6+
source_run_id: 28518653656
7+
last_synced: 2026-07-01T12:55:05.115Z
88
---
99

1010
<!-- header:start -->
@@ -55,7 +55,7 @@ permissions:
5555
## Usage
5656
5757
````yaml
58-
- uses: hoverkraft-tech/ci-github-container/actions/docker/create-images-manifests@c9088e8447c5a8be45157e17701023fc50ccb1c0 # 0.37.2
58+
- uses: hoverkraft-tech/ci-github-container/actions/docker/create-images-manifests@cfc7074e26bbfbdf33f163d209d2c14957358152 # 0.38.0
5959
with:
6060
# OCI registry configuration used to pull, push and cache images.
6161
# Accepts either a registry hostname string (default format) or a JSON object.
@@ -263,7 +263,7 @@ jobs:
263263
core.setOutput("built-images", JSON.stringify(cloneInput));
264264

265265
- id: clone-tag
266-
uses: hoverkraft-tech/ci-github-container/actions/docker/create-images-manifests@c9088e8447c5a8be45157e17701023fc50ccb1c0 # 0.37.2
266+
uses: hoverkraft-tech/ci-github-container/actions/docker/create-images-manifests@cfc7074e26bbfbdf33f163d209d2c14957358152 # 0.38.0
267267
with:
268268
oci-registry: ghcr.io
269269
oci-registry-username: ${{ github.repository_owner }}

application/docs/projects/github-actions-and-reusable-workflows/ci-github-container/actions/docker/get-image-metadata/index.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ title: Get Image Metadata
33
source_repo: hoverkraft-tech/ci-github-container
44
source_path: actions/docker/get-image-metadata/README.md
55
source_branch: main
6-
source_run_id: 28514459168
7-
last_synced: 2026-07-01T11:38:55.507Z
6+
source_run_id: 28518653656
7+
last_synced: 2026-07-01T12:55:05.115Z
88
---
99

1010
<!-- header:start -->
@@ -45,7 +45,7 @@ It uses the [docker/metadata-action](https://github.com/docker/metadata-action)
4545
## Usage
4646

4747
```yaml
48-
- uses: hoverkraft-tech/ci-github-container/actions/docker/get-image-metadata@c9088e8447c5a8be45157e17701023fc50ccb1c0 # 0.37.2
48+
- uses: hoverkraft-tech/ci-github-container/actions/docker/get-image-metadata@cfc7074e26bbfbdf33f163d209d2c14957358152 # 0.38.0
4949
with:
5050
# OCI registry where to pull and push images
5151
# This input is required.

application/docs/projects/github-actions-and-reusable-workflows/ci-github-container/actions/docker/get-image-name/index.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ title: Get Image Name
33
source_repo: hoverkraft-tech/ci-github-container
44
source_path: actions/docker/get-image-name/README.md
55
source_branch: main
6-
source_run_id: 28514459168
7-
last_synced: 2026-07-01T11:38:55.507Z
6+
source_run_id: 28518653656
7+
last_synced: 2026-07-01T12:55:05.115Z
88
---
99

1010
<!-- header:start -->
@@ -43,7 +43,7 @@ Action to forge the name of a given image including registry, repository and giv
4343
## Usage
4444

4545
```yaml
46-
- uses: hoverkraft-tech/ci-github-container/actions/docker/get-image-name@c9088e8447c5a8be45157e17701023fc50ccb1c0 # 0.37.2
46+
- uses: hoverkraft-tech/ci-github-container/actions/docker/get-image-name@cfc7074e26bbfbdf33f163d209d2c14957358152 # 0.38.0
4747
with:
4848
# OCI registry to prefix the image full name
4949
oci-registry: ""

application/docs/projects/github-actions-and-reusable-workflows/ci-github-container/actions/docker/prune-pull-requests-image-tags/index.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ title: Prune Pull Requests Image Tags
33
source_repo: hoverkraft-tech/ci-github-container
44
source_path: actions/docker/prune-pull-requests-image-tags/README.md
55
source_branch: main
6-
source_run_id: 28514459168
7-
last_synced: 2026-07-01T11:38:55.507Z
6+
source_run_id: 28518653656
7+
last_synced: 2026-07-01T12:55:05.115Z
88
---
99

1010
<!-- header:start -->
@@ -54,7 +54,7 @@ permissions:
5454
## Usage
5555
5656
```yaml
57-
- uses: hoverkraft-tech/ci-github-container/actions/docker/prune-pull-requests-image-tags@c9088e8447c5a8be45157e17701023fc50ccb1c0 # 0.37.2
57+
- uses: hoverkraft-tech/ci-github-container/actions/docker/prune-pull-requests-image-tags@cfc7074e26bbfbdf33f163d209d2c14957358152 # 0.38.0
5858
with:
5959
# Image name
6060
image: ""

application/docs/projects/github-actions-and-reusable-workflows/ci-github-container/actions/docker/setup/index.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ title: Setup
33
source_repo: hoverkraft-tech/ci-github-container
44
source_path: actions/docker/setup/README.md
55
source_branch: main
6-
source_run_id: 28514459168
7-
last_synced: 2026-07-01T11:38:55.507Z
6+
source_run_id: 28518653656
7+
last_synced: 2026-07-01T12:55:05.115Z
88
---
99

1010
<!-- header:start -->
@@ -40,7 +40,7 @@ Shared action to configure Docker tooling and OCI registry authentication.
4040
## Usage
4141

4242
````yaml
43-
- uses: hoverkraft-tech/ci-github-container/actions/docker/setup@c9088e8447c5a8be45157e17701023fc50ccb1c0 # 0.37.2
43+
- uses: hoverkraft-tech/ci-github-container/actions/docker/setup@cfc7074e26bbfbdf33f163d209d2c14957358152 # 0.38.0
4444
with:
4545
# OCI registry configuration used to pull, push and cache images.
4646
# Accepts either a registry hostname string (default format) or a JSON object.

application/docs/projects/github-actions-and-reusable-workflows/ci-github-container/actions/docker/sign-images/index.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ title: Sign Images
33
source_repo: hoverkraft-tech/ci-github-container
44
source_path: actions/docker/sign-images/README.md
55
source_branch: main
6-
source_run_id: 28514459168
7-
last_synced: 2026-07-01T11:38:55.507Z
6+
source_run_id: 28518653656
7+
last_synced: 2026-07-01T12:55:05.115Z
88
---
99

1010
<!-- header:start -->
@@ -55,7 +55,7 @@ permissions:
5555
## Usage
5656
5757
````yaml
58-
- uses: hoverkraft-tech/ci-github-container/actions/docker/sign-images@c9088e8447c5a8be45157e17701023fc50ccb1c0 # 0.37.2
58+
- uses: hoverkraft-tech/ci-github-container/actions/docker/sign-images@cfc7074e26bbfbdf33f163d209d2c14957358152 # 0.38.0
5959
with:
6060
# Images to sign.
6161
# Can be a single image or a list of images separated by commas or newlines or spaces.

0 commit comments

Comments
 (0)