Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/guid-index.json
Original file line number Diff line number Diff line change
Expand Up @@ -1003,7 +1003,7 @@
"path": ".github/workflows/reusable-release.yml",
"guid": "7b8c9d0e-1f2a-3b4c-5d6e-7f8a9b0c1d2e",
"title": "Reusable Release Coordinator",
"version": "2.14.5",
"version": "2.14.6",
"header_path": ".github/workflows/reusable-release.yml",
"path_mismatch": false
},
Expand Down
14 changes: 7 additions & 7 deletions .github/workflows/reusable-release.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# file: .github/workflows/reusable-release.yml
# version: 2.14.5
# version: 2.14.6
# guid: 7b8c9d0e-1f2a-3b4c-5d6e-7f8a9b0c1d2e

name: Reusable Release Coordinator
Expand Down Expand Up @@ -360,7 +360,7 @@ jobs:
private-key: ${{ secrets.CI_APP_PRIVATE_KEY }}

- name: Build Go
uses: falkcorp/gha-release-go@e6b2fa793ea1f43d6baee44c77c6047b5abe7f15 # v2.0.1 (GORELEASER_CURRENT_TAG pin)
uses: falkcorp/gha-release-go@cf4aea678c05f80410cd468683f38bd782f7915e # v1.0.3 (GORELEASER_CURRENT_TAG pin)
with:
protobuf-artifacts: ${{ needs.detect-languages.outputs.protobuf-needed }}
release-version: ${{ needs.detect-languages.outputs.release-tag }}
Expand All @@ -385,7 +385,7 @@ jobs:
with:
submodules: recursive
- name: Build Python
uses: falkcorp/gha-release-python@f3105cab8ecca34051c16c989cc809b19ae5a297 # v2.0.0
uses: falkcorp/gha-release-python@a6acf4ec1ced26d355ab06032a014c415bb5be13 # v1.0.3
with:
protobuf-artifacts: ${{ needs.detect-languages.outputs.protobuf-needed }}

Expand All @@ -404,7 +404,7 @@ jobs:
with:
submodules: recursive
- name: Build Rust
uses: falkcorp/gha-release-rust@fcee6b67fc61c0da24d890d850793ccae981ccbf # v2.0.0
uses: falkcorp/gha-release-rust@9cdb217e2a5caa4855b6568df8416f2014cee01b # v1.0.3
with:
protobuf-artifacts: ${{ needs.detect-languages.outputs.protobuf-needed }}
release-version: ${{ needs.detect-languages.outputs.release-tag }}
Expand All @@ -424,7 +424,7 @@ jobs:
with:
submodules: recursive
- name: Build Frontend
uses: falkcorp/gha-release-frontend@d2a4a8364559606e0f5ac04ef87963a660eab8ac # v2.0.0
uses: falkcorp/gha-release-frontend@731cf92c81c31e1372edc7612c055b160a704c1f # v1.0.3

# Docker Build
build-docker:
Expand All @@ -441,7 +441,7 @@ jobs:
with:
submodules: recursive
- name: Build Docker
uses: falkcorp/gha-release-docker@5438b1e9389357ebe4142d23944ee89f0afd9d11 # v2.0.0
uses: falkcorp/gha-release-docker@f277535984a419a3c68d9336234ed429accea5b2 # v1.0.3
with:
registry: ${{ needs.detect-languages.outputs.registry }}
image-name: ${{ needs.detect-languages.outputs.image-name }}
Expand Down Expand Up @@ -526,7 +526,7 @@ jobs:
path: ./artifacts
- name: Package and organize release artifacts
id: package-artifacts
uses: falkcorp/gha-package-assets@c1dc41c8fb6800606eee2714da4d7b807d55ecc4 # v1.2.0
uses: falkcorp/gha-package-assets@a55b9a19b91fc5882d571849ad44c2e460688f7b # v1.1.5
with:
artifacts-dir: ./artifacts

Expand Down
10 changes: 10 additions & 0 deletions changelog.d/fix-orphaned-action-pins.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
### Fixed

#### Repoint 6 orphaned `falkcorp/gha-release-*` action pins that crashed Dependabot

`reusable-release.yml` pinned six first-party actions (gha-release-python/docker/go/rust/frontend,
gha-package-assets) to commit SHAs labelled with `v2.0.x`/`v1.2.0` tags that were never published.
Those SHAs are unreachable from any tag, so Dependabot's `github_actions` updater crashed with
`no such commit …` — and because the ecosystem is part of the `multi-ecosystem-group`, the crash
blocked all grouped version-update PRs (none created since 2026-06-04). Repinned each to its latest
real release (v1.0.3 / v1.1.5).
Loading