8 Commits 5eeec6cd92 ... b6680d8103

Author SHA1 Message Date
  Fabian Peter Hammerle b6680d8103 upgrade tor package from v0.4.8.12-r0 to v0.4.8.13-r0 2 weeks ago
  dependabot[bot] 11c5f5e2f9 build(deps): bump actions/upload-artifact from 4.4.0 to 4.4.3 (#106) 3 weeks ago
  dependabot[bot] 7b36f1e952 build(deps): bump docker/setup-buildx-action from 3.7.0 to 3.7.1 (#107) 3 weeks ago
  dependabot[bot] 9a1a0aa736 build(deps): bump docker/setup-buildx-action from 3.6.1 to 3.7.0 (#104) 1 month ago
  dependabot[bot] 69a9a2f381 build(deps): bump docker/build-push-action from 6.7.0 to 6.9.0 (#105) 1 month ago
  dependabot[bot] 17d5b644e3 build(deps): bump alpine from 3.20.2 to 3.20.3 (#103) 1 month ago
  dependabot[bot] fa1cbddaa8 build(deps): bump actions/upload-artifact from 4.3.6 to 4.4.0 (#102) 2 months ago
  dependabot[bot] 050f5f6200 build(deps): bump docker/build-push-action from 6.6.1 to 6.7.0 (#101) 2 months ago
2 changed files with 5 additions and 5 deletions
  1. 3 3
      .github/workflows/container-image.yml
  2. 2 2
      Dockerfile

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

@@ -11,13 +11,13 @@ jobs:
     runs-on: ubuntu-20.04
     steps:
     - uses: docker/setup-qemu-action@v3.2.0
-    - uses: docker/setup-buildx-action@v3.6.1
+    - uses: docker/setup-buildx-action@v3.7.1
     # > 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.6.1
+    - uses: docker/build-push-action@v6.9.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.3.6
+    - uses: actions/upload-artifact@v4.4.3
       with: {path: oci-container-image.tar}

+ 2 - 2
Dockerfile

@@ -1,4 +1,4 @@
-FROM docker.io/alpine:3.20.2
+FROM docker.io/alpine:3.20.3
 
 # 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
@@ -6,7 +6,7 @@ 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.12-r0
+ARG TOR_PACKAGE_VERSION=0.4.8.13-r0
 RUN apk add --no-cache \
         tor=$TOR_PACKAGE_VERSION \
         gettext-envsubst=$GETTEXT_PACKAGE_VERSION \