Skip to content

Commit a2b84c7

Browse files
hoverkraft-bot[bot]neilime
authored andcommitted
docs(hoverkraft-tech/ci-github-container): update documentation
Signed-off-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
1 parent 67bbe18 commit a2b84c7

File tree

17 files changed

+54
-54
lines changed

17 files changed

+54
-54
lines changed

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: 24192682372
6-
last_synced: 2026-04-09T13:33:00.919Z
5+
source_run_id: 24227868893
6+
last_synced: 2026-04-10T05:29:38.456Z
77
---
88

99
# Contributing

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,4 @@ description: Documentation for Ci Github Container
88
Documentation for the Ci Github Container project.
99

1010
**Source Repository:** [hoverkraft-tech/ci-github-container](https://github.com/hoverkraft-tech/ci-github-container)
11-
**Last Synced:** 2026-04-09T13:33:00.919Z
11+
**Last Synced:** 2026-04-10T05:29:38.456Z

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

Lines changed: 2 additions & 2 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: 24192682372
7-
last_synced: 2026-04-09T13:33:00.919Z
6+
source_run_id: 24227868893
7+
last_synced: 2026-04-10T05:29:38.456Z
88
---
99

1010
<!-- header:start -->

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

Lines changed: 14 additions & 14 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: 24192682372
7-
last_synced: 2026-04-09T13:33:00.919Z
6+
source_run_id: 24227868893
7+
last_synced: 2026-04-10T05:29:38.456Z
88
---
99

1010
<!-- header:start -->
@@ -54,7 +54,7 @@ permissions:
5454
## Usage
5555
5656
```yaml
57-
- uses: hoverkraft-tech/ci-github-container/actions/docker/clean-images@4f29319e02dd65152386c436e8c3136f380a0e71 # 0.28.0
57+
- uses: hoverkraft-tech/ci-github-container/actions/docker/clean-images@bcbbcaff24e053e38ebab02dd0e41442df196719 # 0.32.0
5858
with:
5959
# Comma-separated list of packages to cleanup.
6060
# Example: "application-1,application-2"
@@ -81,14 +81,14 @@ permissions:
8181
8282
## Inputs
8383
84-
| **Input** | **Description** | **Required** | **Default** |
85-
| ------------------ | ---------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------ | ----------------------- |
86-
| **`package`** | Comma-separated list of packages to cleanup. | **true** | - |
87-
| | Example: "application-1,application-2" | | |
88-
| **`tags`** | Comma-separated list of tags to delete (supports wildcard syntax). | **true** | - |
89-
| | Example: `pr-*,dev` | | |
90-
| **`github-token`** | GitHub token with the packages:write and packages:delete scopes. | **false** | `$\{\{ github.token }}` |
91-
| | See [https://docs.github.com/en/packages/learn-github-packages/about-permissions-for-github-packages#about-scopes-and-permissions-for-package-registries](https://docs.github.com/en/packages/learn-github-packages/about-permissions-for-github-packages#about-scopes-and-permissions-for-package-registries). | | |
84+
| **Input** | **Description** | **Required** | **Default** |
85+
| ------------------ | ---------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------ | --------------------- |
86+
| **`package`** | Comma-separated list of packages to cleanup. | **true** | - |
87+
| | Example: "application-1,application-2" | | |
88+
| **`tags`** | Comma-separated list of tags to delete (supports wildcard syntax). | **true** | - |
89+
| | Example: `pr-*,dev` | | |
90+
| **`github-token`** | GitHub token with the packages:write and packages:delete scopes. | **false** | `${{ github.token }}` |
91+
| | See [https://docs.github.com/en/packages/learn-github-packages/about-permissions-for-github-packages#about-scopes-and-permissions-for-package-registries](https://docs.github.com/en/packages/learn-github-packages/about-permissions-for-github-packages#about-scopes-and-permissions-for-package-registries). | | |
9292

9393
<!-- inputs:end -->
9494

@@ -118,7 +118,7 @@ jobs:
118118
permissions:
119119
packages: write
120120
steps:
121-
- uses: hoverkraft-tech/ci-github-container/actions/docker/clean-images@4f29319e02dd65152386c436e8c3136f380a0e71 # 0.28.0
121+
- uses: hoverkraft-tech/ci-github-container/actions/docker/clean-images@bcbbcaff24e053e38ebab02dd0e41442df196719 # 0.32.0
122122
with:
123123
package: my-app
124124
delete-tags: pr-${{ github.event.pull_request.number }}-*
@@ -140,7 +140,7 @@ jobs:
140140
permissions:
141141
packages: write
142142
steps:
143-
- uses: hoverkraft-tech/ci-github-container/actions/docker/clean-images@4f29319e02dd65152386c436e8c3136f380a0e71 # 0.28.0
143+
- uses: hoverkraft-tech/ci-github-container/actions/docker/clean-images@bcbbcaff24e053e38ebab02dd0e41442df196719 # 0.32.0
144144
with:
145145
package: my-app
146146
delete-untagged: true
@@ -171,7 +171,7 @@ This project is licensed under the MIT License.
171171

172172
SPDX-License-Identifier: MIT
173173

174-
Copyright © 2025 hoverkraft
174+
Copyright © 2026 hoverkraft
175175

176176
For more details, see the [license](http://choosealicense.com/licenses/mit/).
177177

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

Lines changed: 3 additions & 3 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: 24192682372
7-
last_synced: 2026-04-09T13:33:00.919Z
6+
source_run_id: 24227868893
7+
last_synced: 2026-04-10T05:29:38.456Z
88
---
99

1010
<!-- header:start -->
@@ -54,7 +54,7 @@ permissions:
5454
## Usage
5555
5656
````yaml
57-
- uses: hoverkraft-tech/ci-github-container/actions/docker/create-images-manifests@a0bab9151cc074af9f6c8204ab42a48d2d570379 # 0.30.6
57+
- uses: hoverkraft-tech/ci-github-container/actions/docker/create-images-manifests@bcbbcaff24e053e38ebab02dd0e41442df196719 # 0.32.0
5858
with:
5959
# OCI registry configuration used to pull, push and cache images.
6060
# 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/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: 24192682372
7-
last_synced: 2026-04-09T13:33:00.919Z
6+
source_run_id: 24227868893
7+
last_synced: 2026-04-10T05:29:38.456Z
88
---
99

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

4646
```yaml
47-
- uses: hoverkraft-tech/ci-github-container/actions/docker/get-image-metadata@a0bab9151cc074af9f6c8204ab42a48d2d570379 # 0.30.6
47+
- uses: hoverkraft-tech/ci-github-container/actions/docker/get-image-metadata@bcbbcaff24e053e38ebab02dd0e41442df196719 # 0.32.0
4848
with:
4949
# OCI registry where to pull and push images
5050
# This input is required.

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

Lines changed: 2 additions & 2 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: 24192682372
7-
last_synced: 2026-04-09T13:33:00.919Z
6+
source_run_id: 24227868893
7+
last_synced: 2026-04-10T05:29:38.456Z
88
---
99

1010
<!-- header:start -->

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: 24192682372
7-
last_synced: 2026-04-09T13:33:00.919Z
6+
source_run_id: 24227868893
7+
last_synced: 2026-04-10T05:29:38.456Z
88
---
99

1010
<!-- header:start -->
@@ -53,7 +53,7 @@ permissions:
5353
## Usage
5454
5555
```yaml
56-
- uses: hoverkraft-tech/ci-github-container/actions/docker/prune-pull-requests-image-tags@a0bab9151cc074af9f6c8204ab42a48d2d570379 # 0.30.6
56+
- uses: hoverkraft-tech/ci-github-container/actions/docker/prune-pull-requests-image-tags@bcbbcaff24e053e38ebab02dd0e41442df196719 # 0.32.0
5757
with:
5858
# Image name
5959
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: 24192682372
7-
last_synced: 2026-04-09T13:33:00.919Z
6+
source_run_id: 24227868893
7+
last_synced: 2026-04-10T05:29:38.456Z
88
---
99

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

4141
````yaml
42-
- uses: hoverkraft-tech/ci-github-container/actions/docker/setup@a0bab9151cc074af9f6c8204ab42a48d2d570379 # 0.30.6
42+
- uses: hoverkraft-tech/ci-github-container/actions/docker/setup@bcbbcaff24e053e38ebab02dd0e41442df196719 # 0.32.0
4343
with:
4444
# OCI registry configuration used to pull, push and cache images.
4545
# 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: 24192682372
7-
last_synced: 2026-04-09T13:33:00.919Z
6+
source_run_id: 24227868893
7+
last_synced: 2026-04-10T05:29:38.456Z
88
---
99

1010
<!-- header:start -->
@@ -54,7 +54,7 @@ permissions:
5454
## Usage
5555
5656
````yaml
57-
- uses: hoverkraft-tech/ci-github-container/actions/docker/sign-images@a0bab9151cc074af9f6c8204ab42a48d2d570379 # 0.30.6
57+
- uses: hoverkraft-tech/ci-github-container/actions/docker/sign-images@bcbbcaff24e053e38ebab02dd0e41442df196719 # 0.32.0
5858
with:
5959
# Images to sign.
6060
# Can be a single image or a list of images separated by commas or newlines or spaces.

0 commit comments

Comments
 (0)