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 8be39d3d..5c7bd617 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: 28514459168 -last_synced: 2026-07-01T11:38:55.507Z +source_run_id: 28518653656 +last_synced: 2026-07-01T12:55:05.115Z --- # Contributing 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 5f8ce6b7..7739cc31 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: 28514459168 -last_synced: 2026-07-01T11:38:55.507Z +source_run_id: 28518653656 +last_synced: 2026-07-01T12:55:05.115Z --- @@ -47,7 +47,6 @@ If default GitHub token is used, the following permissions are required: ```yml permissions: - actions: write # Required for gha cache backend contents: read packages: write ``` @@ -57,7 +56,7 @@ permissions: ## Usage ````yaml -- uses: hoverkraft-tech/ci-github-container/actions/docker/build-image@c9088e8447c5a8be45157e17701023fc50ccb1c0 # 0.37.2 +- uses: hoverkraft-tech/ci-github-container/actions/docker/build-image@cfc7074e26bbfbdf33f163d209d2c14957358152 # 0.38.0 with: # OCI registry configuration used to pull, push and cache images. # Accepts either a registry hostname string (default format) or a JSON object. 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 47021c1a..5d092e47 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: 28514459168 -last_synced: 2026-07-01T11:38:55.507Z +source_run_id: 28518653656 +last_synced: 2026-07-01T12:55:05.115Z --- @@ -55,7 +55,7 @@ permissions: ## Usage ```yaml -- uses: hoverkraft-tech/ci-github-container/actions/docker/clean-images@c9088e8447c5a8be45157e17701023fc50ccb1c0 # 0.37.2 +- uses: hoverkraft-tech/ci-github-container/actions/docker/clean-images@cfc7074e26bbfbdf33f163d209d2c14957358152 # 0.38.0 with: # Comma-separated list of packages to cleanup. # Example: "application-1,application-2" @@ -119,7 +119,7 @@ jobs: permissions: packages: write steps: - - uses: hoverkraft-tech/ci-github-container/actions/docker/clean-images@c9088e8447c5a8be45157e17701023fc50ccb1c0 # 0.37.2 + - uses: hoverkraft-tech/ci-github-container/actions/docker/clean-images@cfc7074e26bbfbdf33f163d209d2c14957358152 # 0.38.0 with: package: my-app delete-tags: pr-${{ github.event.pull_request.number }}-* @@ -141,7 +141,7 @@ jobs: permissions: packages: write steps: - - uses: hoverkraft-tech/ci-github-container/actions/docker/clean-images@c9088e8447c5a8be45157e17701023fc50ccb1c0 # 0.37.2 + - uses: hoverkraft-tech/ci-github-container/actions/docker/clean-images@cfc7074e26bbfbdf33f163d209d2c14957358152 # 0.38.0 with: package: my-app delete-untagged: true 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 index 553ab288..762853f2 100644 --- 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 @@ -3,8 +3,8 @@ title: Cleanup Builder source_repo: hoverkraft-tech/ci-github-container source_path: actions/docker/cleanup-builder/README.md source_branch: main -source_run_id: 28514459168 -last_synced: 2026-07-01T11:38:55.507Z +source_run_id: 28518653656 +last_synced: 2026-07-01T12:55:05.115Z --- @@ -30,7 +30,7 @@ Register a post-job step that removes a Docker Buildx builder after later post s ## Usage ```yaml -- uses: hoverkraft-tech/ci-github-container/actions/docker/cleanup-builder@c9088e8447c5a8be45157e17701023fc50ccb1c0 # 0.37.2 +- uses: hoverkraft-tech/ci-github-container/actions/docker/cleanup-builder@cfc7074e26bbfbdf33f163d209d2c14957358152 # 0.38.0 with: # Docker Buildx builder name to remove during post-job cleanup. builder: "" 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 784adb4b..a67aef06 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: 28514459168 -last_synced: 2026-07-01T11:38:55.507Z +source_run_id: 28518653656 +last_synced: 2026-07-01T12:55:05.115Z --- @@ -55,7 +55,7 @@ permissions: ## Usage ````yaml -- uses: hoverkraft-tech/ci-github-container/actions/docker/create-images-manifests@c9088e8447c5a8be45157e17701023fc50ccb1c0 # 0.37.2 +- uses: hoverkraft-tech/ci-github-container/actions/docker/create-images-manifests@cfc7074e26bbfbdf33f163d209d2c14957358152 # 0.38.0 with: # OCI registry configuration used to pull, push and cache images. # Accepts either a registry hostname string (default format) or a JSON object. @@ -263,7 +263,7 @@ jobs: core.setOutput("built-images", JSON.stringify(cloneInput)); - id: clone-tag - uses: hoverkraft-tech/ci-github-container/actions/docker/create-images-manifests@c9088e8447c5a8be45157e17701023fc50ccb1c0 # 0.37.2 + uses: hoverkraft-tech/ci-github-container/actions/docker/create-images-manifests@cfc7074e26bbfbdf33f163d209d2c14957358152 # 0.38.0 with: oci-registry: ghcr.io oci-registry-username: ${{ github.repository_owner }} 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 e1b5473e..7fd6ee7d 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: 28514459168 -last_synced: 2026-07-01T11:38:55.507Z +source_run_id: 28518653656 +last_synced: 2026-07-01T12:55:05.115Z --- @@ -45,7 +45,7 @@ It uses the [docker/metadata-action](https://github.com/docker/metadata-action) ## Usage ```yaml -- uses: hoverkraft-tech/ci-github-container/actions/docker/get-image-metadata@c9088e8447c5a8be45157e17701023fc50ccb1c0 # 0.37.2 +- uses: hoverkraft-tech/ci-github-container/actions/docker/get-image-metadata@cfc7074e26bbfbdf33f163d209d2c14957358152 # 0.38.0 with: # OCI registry where to pull and push images # This input is required. 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 80f7e907..45641e8f 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: 28514459168 -last_synced: 2026-07-01T11:38:55.507Z +source_run_id: 28518653656 +last_synced: 2026-07-01T12:55:05.115Z --- @@ -43,7 +43,7 @@ Action to forge the name of a given image including registry, repository and giv ## Usage ```yaml -- uses: hoverkraft-tech/ci-github-container/actions/docker/get-image-name@c9088e8447c5a8be45157e17701023fc50ccb1c0 # 0.37.2 +- uses: hoverkraft-tech/ci-github-container/actions/docker/get-image-name@cfc7074e26bbfbdf33f163d209d2c14957358152 # 0.38.0 with: # OCI registry to prefix the image full name oci-registry: "" 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 2e934dbc..f1986193 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: 28514459168 -last_synced: 2026-07-01T11:38:55.507Z +source_run_id: 28518653656 +last_synced: 2026-07-01T12:55:05.115Z --- @@ -54,7 +54,7 @@ permissions: ## Usage ```yaml -- uses: hoverkraft-tech/ci-github-container/actions/docker/prune-pull-requests-image-tags@c9088e8447c5a8be45157e17701023fc50ccb1c0 # 0.37.2 +- uses: hoverkraft-tech/ci-github-container/actions/docker/prune-pull-requests-image-tags@cfc7074e26bbfbdf33f163d209d2c14957358152 # 0.38.0 with: # Image name image: "" 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 626c97ef..3abbbbbe 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: 28514459168 -last_synced: 2026-07-01T11:38:55.507Z +source_run_id: 28518653656 +last_synced: 2026-07-01T12:55:05.115Z --- @@ -40,7 +40,7 @@ Shared action to configure Docker tooling and OCI registry authentication. ## Usage ````yaml -- uses: hoverkraft-tech/ci-github-container/actions/docker/setup@c9088e8447c5a8be45157e17701023fc50ccb1c0 # 0.37.2 +- uses: hoverkraft-tech/ci-github-container/actions/docker/setup@cfc7074e26bbfbdf33f163d209d2c14957358152 # 0.38.0 with: # OCI registry configuration used to pull, push and cache images. # Accepts either a registry hostname string (default format) or a JSON object. 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 57a75f08..6ce6d4b8 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: 28514459168 -last_synced: 2026-07-01T11:38:55.507Z +source_run_id: 28518653656 +last_synced: 2026-07-01T12:55:05.115Z --- @@ -55,7 +55,7 @@ permissions: ## Usage ````yaml -- uses: hoverkraft-tech/ci-github-container/actions/docker/sign-images@c9088e8447c5a8be45157e17701023fc50ccb1c0 # 0.37.2 +- uses: hoverkraft-tech/ci-github-container/actions/docker/sign-images@cfc7074e26bbfbdf33f163d209d2c14957358152 # 0.38.0 with: # Images to sign. # Can be a single image or a list of images separated by commas or newlines or spaces. 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 26b65a2b..779e59b8 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: 28514459168 -last_synced: 2026-07-01T11:38:55.507Z +source_run_id: 28518653656 +last_synced: 2026-07-01T12:55:05.115Z --- @@ -45,7 +45,7 @@ Mainly using [losisin/helm-docs-github-action](https://github.com/losisin/helm-d ## Usage ```yaml -- uses: hoverkraft-tech/ci-github-container/actions/helm/generate-docs@c9088e8447c5a8be45157e17701023fc50ccb1c0 # 0.37.2 +- uses: hoverkraft-tech/ci-github-container/actions/helm/generate-docs@cfc7074e26bbfbdf33f163d209d2c14957358152 # 0.38.0 with: # Working directory # Default: `${{ github.workspace }}` 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 436873fb..d79ae97f 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: 28514459168 -last_synced: 2026-07-01T11:38:55.507Z +source_run_id: 28518653656 +last_synced: 2026-07-01T12:55:05.115Z --- @@ -50,7 +50,7 @@ The output will be: ## Usage ```yaml -- uses: hoverkraft-tech/ci-github-container/actions/helm/parse-chart-uri@c9088e8447c5a8be45157e17701023fc50ccb1c0 # 0.37.2 +- uses: hoverkraft-tech/ci-github-container/actions/helm/parse-chart-uri@cfc7074e26bbfbdf33f163d209d2c14957358152 # 0.38.0 with: # Chart URI to parse. # This input is required. diff --git a/application/docs/projects/github-actions-and-reusable-workflows/ci-github-container/actions/helm/prepare-chart/index.md b/application/docs/projects/github-actions-and-reusable-workflows/ci-github-container/actions/helm/prepare-chart/index.md index 0d9ae2e6..9642e3a7 100644 --- a/application/docs/projects/github-actions-and-reusable-workflows/ci-github-container/actions/helm/prepare-chart/index.md +++ b/application/docs/projects/github-actions-and-reusable-workflows/ci-github-container/actions/helm/prepare-chart/index.md @@ -3,8 +3,8 @@ title: Prepare Chart source_repo: hoverkraft-tech/ci-github-container source_path: actions/helm/prepare-chart/README.md source_branch: main -source_run_id: 28514459168 -last_synced: 2026-07-01T11:38:55.507Z +source_run_id: 28518653656 +last_synced: 2026-07-01T12:55:05.115Z --- @@ -44,7 +44,7 @@ for all charts found under a path. ## Usage ```yaml -- uses: hoverkraft-tech/ci-github-container/actions/helm/prepare-chart@c9088e8447c5a8be45157e17701023fc50ccb1c0 # 0.37.2 +- uses: hoverkraft-tech/ci-github-container/actions/helm/prepare-chart@cfc7074e26bbfbdf33f163d209d2c14957358152 # 0.38.0 with: # Path containing the chart(s) to prepare # This input is required. 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 a47281f2..3d97d433 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: 28514459168 -last_synced: 2026-07-01T11:38:55.507Z +source_run_id: 28518653656 +last_synced: 2026-07-01T12:55:05.115Z --- @@ -52,7 +52,7 @@ This action requires the following permissions on the repository: ## Usage ````yaml -- uses: hoverkraft-tech/ci-github-container/actions/helm/release-chart@c9088e8447c5a8be45157e17701023fc50ccb1c0 # 0.37.2 +- uses: hoverkraft-tech/ci-github-container/actions/helm/release-chart@cfc7074e26bbfbdf33f163d209d2c14957358152 # 0.38.0 with: # OCI registry where to push chart. # See https://github.com/appany/helm-oci-chart-releaser#usage. 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 657d4a4f..278c5d05 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: 28514459168 -last_synced: 2026-07-01T11:38:55.507Z +source_run_id: 28518653656 +last_synced: 2026-07-01T12:55:05.115Z --- @@ -44,7 +44,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@c9088e8447c5a8be45157e17701023fc50ccb1c0 # 0.37.2 +- uses: hoverkraft-tech/ci-github-container/actions/helm/test-chart@cfc7074e26bbfbdf33f163d209d2c14957358152 # 0.38.0 with: # Working directory # Default: `${{ github.workspace }}` diff --git a/application/docs/projects/github-actions-and-reusable-workflows/ci-github-container/actions/helm/update-chart-values/index.md b/application/docs/projects/github-actions-and-reusable-workflows/ci-github-container/actions/helm/update-chart-values/index.md index 690ffaf6..927467f5 100644 --- a/application/docs/projects/github-actions-and-reusable-workflows/ci-github-container/actions/helm/update-chart-values/index.md +++ b/application/docs/projects/github-actions-and-reusable-workflows/ci-github-container/actions/helm/update-chart-values/index.md @@ -3,8 +3,8 @@ title: Update Chart Values source_repo: hoverkraft-tech/ci-github-container source_path: actions/helm/update-chart-values/README.md source_branch: main -source_run_id: 28514459168 -last_synced: 2026-07-01T11:38:55.507Z +source_run_id: 28518653656 +last_synced: 2026-07-01T12:55:05.115Z --- @@ -43,7 +43,7 @@ Updates Helm chart values files before release. ## Usage ````yaml -- uses: hoverkraft-tech/ci-github-container/actions/helm/update-chart-values@c9088e8447c5a8be45157e17701023fc50ccb1c0 # 0.37.2 +- uses: hoverkraft-tech/ci-github-container/actions/helm/update-chart-values@cfc7074e26bbfbdf33f163d209d2c14957358152 # 0.38.0 with: # Path to the chart to update # This input is required. 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 d5b9232c..0d977b3e 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: 28514459168 -last_synced: 2026-07-01T11:38:55.507Z +source_run_id: 28518653656 +last_synced: 2026-07-01T12:55:05.115Z --- @@ -59,9 +59,8 @@ on: permissions: {} jobs: docker-build-images: - uses: hoverkraft-tech/ci-github-container/.github/workflows/docker-build-images.yml@c9088e8447c5a8be45157e17701023fc50ccb1c0 # 0.37.2 + uses: hoverkraft-tech/ci-github-container/.github/workflows/docker-build-images.yml@cfc7074e26bbfbdf33f163d209d2c14957358152 # 0.38.0 permissions: - actions: write contents: read id-token: write issues: read 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 aa1524e2..2e6248d3 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: 28514459168 -last_synced: 2026-07-01T11:38:55.507Z +source_run_id: 28518653656 +last_synced: 2026-07-01T12:55:05.115Z --- @@ -56,7 +56,7 @@ on: permissions: {} jobs: prune-pull-requests-images-tags: - uses: hoverkraft-tech/ci-github-container/.github/workflows/prune-pull-requests-images-tags.yml@c9088e8447c5a8be45157e17701023fc50ccb1c0 # 0.37.2 + uses: hoverkraft-tech/ci-github-container/.github/workflows/prune-pull-requests-images-tags.yml@cfc7074e26bbfbdf33f163d209d2c14957358152 # 0.38.0 permissions: contents: read packages: write 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 86131211..e4c4c7e8 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: 28514459168 -last_synced: 2026-07-01T11:38:55.507Z +source_run_id: 28518653656 +last_synced: 2026-07-01T12:55:05.115Z ---