4 Commits 608db69952 ... c2ae705e31

Author SHA1 Message Date
  Fabian Peter Hammerle c2ae705e31 upgrade tor package to v0.4.9.9-r0 3 weeks ago
  dependabot[bot] 00e43bb05b build(deps): bump docker/setup-qemu-action from 4.0.0 to 4.1.0 (#150) 4 weeks ago
  dependabot[bot] c83991301d build(deps): bump docker/setup-buildx-action from 4.0.0 to 4.1.0 (#149) 4 weeks ago
  dependabot[bot] 90de6ceaf2 build(deps): bump docker/build-push-action from 7.1.0 to 7.2.0 (#148) 1 month ago
2 changed files with 4 additions and 4 deletions
  1. 3 3
      .github/workflows/container-image.yml
  2. 1 1
      Dockerfile

+ 3 - 3
.github/workflows/container-image.yml

@@ -25,13 +25,13 @@ jobs:
           type=ref,event=pr
           type=sha,format=long
           type=raw,value=latest,enable=false
-    - uses: docker/setup-qemu-action@v4.0.0
+    - uses: docker/setup-qemu-action@v4.1.0
     - uses: docker/login-action@v4
       with:
         registry: ghcr.io
         username: ${{ github.actor }}
         password: ${{ secrets.GITHUB_TOKEN }}
-    - uses: docker/setup-buildx-action@v4.0.0
+    - uses: docker/setup-buildx-action@v4.1.0
     # > By default, this action uses the Git context so you don't need to use
     # > the actions/checkout action to checkout the repository because this
     # > will be done directly by buildkit. [...]
@@ -40,7 +40,7 @@ jobs:
     # https://github.com/marketplace/actions/build-and-push-docker-images
     # > The commit history is not preserved.
     # https://docs.docker.com/engine/reference/commandline/build/#git-repositories
-    - uses: docker/build-push-action@v7.1.0
+    - uses: docker/build-push-action@v7.2.0
       with:
         platforms: |
           linux/amd64

+ 1 - 1
Dockerfile

@@ -6,7 +6,7 @@ ARG GETTEXT_PACKAGE_VERSION=0.24.1-r1
 # https://gitweb.torproject.org/tor.git/plain/ChangeLog
 # https://gitlab.torproject.org/tpo/core/tor/-/raw/release-0.4.9/ReleaseNotes
 # https://git.alpinelinux.org/aports/log/community/tor?h=3.23-stable
-ARG TOR_PACKAGE_VERSION=0.4.9.8-r0
+ARG TOR_PACKAGE_VERSION=0.4.9.9-r0
 RUN apk add --no-cache \
         tor=$TOR_PACKAGE_VERSION \
         gettext-envsubst=$GETTEXT_PACKAGE_VERSION \