11 Commits b6680d8103 ... abc551b38d

Author SHA1 Message Date
  Fabian Peter Hammerle abc551b38d upgrade tor package from v0.4.8.13-r0 to v0.4.8.14-r0 1 month ago
  dependabot[bot] fdd1462683 build(deps): bump docker/build-push-action from 6.12.0 to 6.13.0 (#117) 1 month ago
  dependabot[bot] 3f2d8cfc12 build(deps): bump docker/build-push-action from 6.11.0 to 6.12.0 (#116) 1 month ago
  dependabot[bot] eed19013a8 build(deps): bump docker/build-push-action from 6.10.0 to 6.11.0 (#114) 2 months ago
  dependabot[bot] 845d76f80a build(deps): bump alpine from 3.21.0 to 3.21.2 (#112) 2 months ago
  dependabot[bot] d95cd625ea build(deps): bump actions/upload-artifact from 4.5.0 to 4.6.0 (#113) 2 months ago
  dependabot[bot] cd63f3d2fa build(deps): bump docker/setup-qemu-action from 3.2.0 to 3.3.0 (#115) 2 months ago
  dependabot[bot] 23732ef577 build(deps): bump actions/upload-artifact from 4.4.3 to 4.5.0 (#110) 2 months ago
  dependabot[bot] 5aff773fa0 build(deps): bump docker/setup-buildx-action from 3.7.1 to 3.8.0 (#111) 2 months ago
  dependabot[bot] 1495fb217a build(deps): bump alpine from 3.20.3 to 3.21.0 (#109) 3 months ago
  dependabot[bot] 3c432b9d51 build(deps): bump docker/build-push-action from 6.9.0 to 6.10.0 (#108) 3 months ago
2 changed files with 8 additions and 8 deletions
  1. 4 4
      .github/workflows/container-image.yml
  2. 4 4
      Dockerfile

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

@@ -10,14 +10,14 @@ jobs:
   docker-build:
     runs-on: ubuntu-20.04
     steps:
-    - uses: docker/setup-qemu-action@v3.2.0
-    - uses: docker/setup-buildx-action@v3.7.1
+    - uses: docker/setup-qemu-action@v3.3.0
+    - uses: docker/setup-buildx-action@v3.8.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. [...]
     # > any file mutation in the steps that precede [...] will be ignored
     # https://github.com/marketplace/actions/build-and-push-docker-images
-    - uses: docker/build-push-action@v6.9.0
+    - uses: docker/build-push-action@v6.13.0
       with:
         platforms: |
           linux/amd64
@@ -34,5 +34,5 @@ jobs:
         # https://docs.docker.com/engine/reference/commandline/buildx_build/#output
         # https://github.com/opencontainers/image-spec
         outputs: type=oci,dest=oci-container-image.tar
-    - uses: actions/upload-artifact@v4.4.3
+    - uses: actions/upload-artifact@v4.6.0
       with: {path: oci-container-image.tar}

+ 4 - 4
Dockerfile

@@ -1,12 +1,12 @@
-FROM docker.io/alpine:3.20.3
+FROM docker.io/alpine:3.21.2
 
 # https://git.savannah.gnu.org/gitweb/?p=gettext.git;a=blob_plain;f=NEWS;hb=master
-# https://git.alpinelinux.org/aports/log/main/gettext?h=3.20-stable
+# https://git.alpinelinux.org/aports/log/main/gettext?h=3.21-stable
 ARG GETTEXT_PACKAGE_VERSION=0.22.5-r0
 # https://gitweb.torproject.org/tor.git/plain/ChangeLog
 # https://gitlab.torproject.org/tpo/core/tor/-/raw/release-0.4.8/ReleaseNotes
-# https://git.alpinelinux.org/aports/log/community/tor?h=3.20-stable
-ARG TOR_PACKAGE_VERSION=0.4.8.13-r0
+# https://git.alpinelinux.org/aports/log/community/tor?h=3.21-stable
+ARG TOR_PACKAGE_VERSION=0.4.8.14-r0
 RUN apk add --no-cache \
         tor=$TOR_PACKAGE_VERSION \
         gettext-envsubst=$GETTEXT_PACKAGE_VERSION \