Skip to content
Open
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
1 change: 1 addition & 0 deletions .github/workflows/mirror.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ on:
- registry-1.docker.io/library/golang
- registry-1.docker.io/library/postgres
- registry-1.docker.io/dxflrs/garage
- registry-1.docker.io/fullstorydev/grpcurl
- ghcr.io/astral-sh/uv
image-index-manifest-tag:
description: |
Expand Down
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ All notable changes to this project will be documented in this file.

- opensearch-dashboards: Bump cdxgen to 13.0.1 and pin the CycloneDX spec version to 1.6 ([#1600]).
- opa, statsd-exporter: Bump cyclonedx-gomod to 1.12.0 ([#1639]).
- testing-tools: Pull `grpcurl` from our own mirror instead of directly from Docker Hub ([#1671]).

### Fixed

Expand Down Expand Up @@ -90,6 +91,7 @@ All notable changes to this project will be documented in this file.
[#1662]: https://github.com/stackabletech/docker-images/pull/1662
[#1664]: https://github.com/stackabletech/docker-images/pull/1664
[#1670]: https://github.com/stackabletech/docker-images/pull/1670
[#1671]: https://github.com/stackabletech/docker-images/pull/1671

## [26.7.0] - 2026-07-21

Expand Down
4 changes: 3 additions & 1 deletion testing-tools/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,9 @@
# check=error=true

ARG GRPCURL_VERSION
FROM fullstorydev/grpcurl:v${GRPCURL_VERSION} AS grpcurl
# Mirrored from registry-1.docker.io/fullstorydev/grpcurl via .github/workflows/mirror.yaml.
# For updated versions check https://github.com/fullstorydev/grpcurl/releases
FROM oci.stackable.tech/sdp/fullstorydev/grpcurl:v${GRPCURL_VERSION} AS grpcurl

# Find the latest version:
#
Expand Down
Loading