Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
44e7a77
Fix typo in README
twz123 Jul 6, 2023
2e07274
Merge pull request #144 from twz123/patch-1
nicolaka Feb 13, 2024
0c33a7c
fix: give grpcurl sane user/group
quadespresso Feb 16, 2024
4dfb45a
Merge pull request #158 from quadespresso/chown-grpcurl
nicolaka Mar 21, 2024
2b14cfb
fix: tar grpcurl permissions
dezza Apr 4, 2024
406c24a
Merge pull request #161 from dezza/patch-1
nicolaka May 15, 2024
e1fbbfa
5/15/2024: v0.13 -> Updating to Alpine 3.19.1, incorporating a few PRs
nicolaka May 15, 2024
183c44d
Bump docker/setup-qemu-action from 2 to 3
dependabot[bot] Oct 4, 2024
3e9301f
Bump actions/checkout from 3 to 4
dependabot[bot] Oct 4, 2024
ff42f4e
Bump docker/setup-buildx-action from 2 to 3
dependabot[bot] Oct 4, 2024
1c5cd81
Bump alpine from 3.19.1 to 3.21.0
dependabot[bot] Dec 6, 2024
2908a1a
Merge pull request #176 from nicolaka/dependabot/docker/alpine-3.21.0
nicolaka Apr 9, 2025
f523c6b
Add dig to the README
danielquinn Apr 30, 2025
71732d4
Bump alpine from 3.21.0 to 3.22.0
dependabot[bot] Jun 2, 2025
d8ef5de
Merge pull request #171 from nicolaka/dependabot/github_actions/docke…
nicolaka Jun 23, 2025
57f6b27
Merge pull request #172 from nicolaka/dependabot/github_actions/actio…
nicolaka Jun 23, 2025
7dfd3ec
Merge pull request #173 from nicolaka/dependabot/github_actions/docke…
nicolaka Jun 23, 2025
d5b6de4
Merge pull request #183 from danielquinn/patch-1
nicolaka Jun 23, 2025
dd2201f
Merge pull request #185 from nicolaka/dependabot/docker/alpine-3.22.0
nicolaka Jun 23, 2025
f786ed2
v0.14
nicolaka Jun 23, 2025
84059d8
fix yaml snippet on readme
0xDones Jul 16, 2025
f582c74
Update README.md
0xDones Jul 16, 2025
58a4b47
Bump actions/checkout from 4 to 6
dependabot[bot] Nov 21, 2025
d1fcfeb
Bump alpine from 3.22.0 to 3.23.2
dependabot[bot] Dec 18, 2025
c32008f
Merge pull request #200 from nicolaka/dependabot/github_actions/actio…
nicolaka Jan 7, 2026
e01931d
Merge pull request #202 from nicolaka/dependabot/docker/alpine-3.23.2
nicolaka Jan 7, 2026
8bef2a7
Merge pull request #189 from 0xDones/patch-1
nicolaka Jan 7, 2026
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
6 changes: 3 additions & 3 deletions .github/workflows/release-buildx.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,18 +11,18 @@ jobs:
steps:
-
name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v6
with:
ref: ${{ github.ref }}
-
name: Set up QEMU
uses: docker/setup-qemu-action@v2
uses: docker/setup-qemu-action@v3
with:
platforms: arm64,amd64
-
name: Set up Docker Buildx
id: buildx
uses: docker/setup-buildx-action@v2
uses: docker/setup-buildx-action@v3
-
name: Available platforms
run: echo ${{ steps.buildx.outputs.platforms }}
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/test-pr-buildx.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,16 +10,16 @@ jobs:
steps:
-
name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v6
-
name: Set up QEMU
uses: docker/setup-qemu-action@v2
uses: docker/setup-qemu-action@v3
with:
platforms: arm64,amd64
-
name: Set up Docker Buildx
id: buildx
uses: docker/setup-buildx-action@v2
uses: docker/setup-buildx-action@v3
-
name: Available platforms
run: echo ${{ steps.buildx.outputs.platforms }}
Expand Down
3 changes: 2 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ RUN apt-get update && apt-get install -y \

RUN /tmp/fetch_binaries.sh

FROM alpine:3.18.0
FROM alpine:3.23.2

RUN set -ex \
&& echo "http://dl-cdn.alpinelinux.org/alpine/edge/main" >> /etc/apk/repositories \
Expand Down Expand Up @@ -62,6 +62,7 @@ RUN set -ex \
strace \
tcpdump \
tcptraceroute \
trippy \
tshark \
util-linux \
vim \
Expand Down
Loading