From 74cb89965fea93832672d5b61fc8ee76436e44ff Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alexander=20Lazarevi=C4=87?= Date: Wed, 30 Jul 2025 12:20:40 +0200 Subject: [PATCH 01/11] Update automating-dokku-setup.md Removed mention of tutorial that is not available online anymore. --- docs/automation/automating-dokku-setup.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/automation/automating-dokku-setup.md b/docs/automation/automating-dokku-setup.md index 8ddd25f..c0b37b3 100644 --- a/docs/automation/automating-dokku-setup.md +++ b/docs/automation/automating-dokku-setup.md @@ -149,7 +149,7 @@ This is pretty good so far, and uses the built-in `shell` Ansible libraries to d app: node-js-app ``` -The above would use a custom `dokku_app` Ansible library for provisioning applications, building upon the porcelain we covered previously. While not in the scope of this blog post, I suggest anyone interested in doing so follow along the [following tutorial](https://blog.toast38coza.me/custom-ansible-module-hello-world/). +The above would use a custom `dokku_app` Ansible library for provisioning applications, building upon the porcelain we covered previously. > For our patreon followers, the code for the `dokku_app` library will be made available, as well as future plans around Ansible integration. From fe61da6734f154ca43961d21748e3413bd4134f7 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 7 Aug 2025 22:15:42 +0000 Subject: [PATCH 02/11] build(deps): bump python from 3.13.5-alpine to 3.13.6-alpine in /_build Bumps python from 3.13.5-alpine to 3.13.6-alpine. --- updated-dependencies: - dependency-name: python dependency-version: 3.13.6-alpine dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- _build/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_build/Dockerfile b/_build/Dockerfile index ce94a6f..b59e568 100644 --- a/_build/Dockerfile +++ b/_build/Dockerfile @@ -1,4 +1,4 @@ -FROM python:3.13.5-alpine +FROM python:3.13.6-alpine WORKDIR /usr/src/app From 0e2fb6ad81058e072f8ab2caefd3076a8de0ffec Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 12 Aug 2025 07:41:55 +0000 Subject: [PATCH 03/11] build(deps): bump actions/checkout from 4 to 5 Bumps [actions/checkout](https://github.com/actions/checkout) from 4 to 5. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v4...v5) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/docs.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml index e19a588..ba4fa21 100644 --- a/.github/workflows/docs.yml +++ b/.github/workflows/docs.yml @@ -16,7 +16,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Cloning repo - uses: actions/checkout@v4 + uses: actions/checkout@v5 with: fetch-depth: 0 From ce2e2b60c822fbc27de466ea4e19213b907841d4 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 19 Aug 2025 10:39:22 +0000 Subject: [PATCH 04/11] build(deps): bump python from 3.13.6-alpine to 3.13.7-alpine in /_build Bumps python from 3.13.6-alpine to 3.13.7-alpine. --- updated-dependencies: - dependency-name: python dependency-version: 3.13.7-alpine dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- _build/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_build/Dockerfile b/_build/Dockerfile index b59e568..f18c5c9 100644 --- a/_build/Dockerfile +++ b/_build/Dockerfile @@ -1,4 +1,4 @@ -FROM python:3.13.6-alpine +FROM python:3.13.7-alpine WORKDIR /usr/src/app From 72d22f6055d9bbe304d778f383e1e0b8d0787d54 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 4 Sep 2025 22:05:08 +0000 Subject: [PATCH 05/11] build(deps): bump actions/setup-python from 5 to 6 Bumps [actions/setup-python](https://github.com/actions/setup-python) from 5 to 6. - [Release notes](https://github.com/actions/setup-python/releases) - [Commits](https://github.com/actions/setup-python/compare/v5...v6) --- updated-dependencies: - dependency-name: actions/setup-python dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/docs.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml index ba4fa21..b957bc4 100644 --- a/.github/workflows/docs.yml +++ b/.github/workflows/docs.yml @@ -21,7 +21,7 @@ jobs: fetch-depth: 0 - name: "Setup python 3.10" - uses: actions/setup-python@v5 + uses: actions/setup-python@v6 with: python-version: '3.10' From dd582e3d2655ecf26fefa7efe32119f7b90e443e Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 7 Oct 2025 22:05:57 +0000 Subject: [PATCH 06/11] build(deps): bump python from 3.13.7-alpine to 3.14.0-alpine in /_build Bumps python from 3.13.7-alpine to 3.14.0-alpine. --- updated-dependencies: - dependency-name: python dependency-version: 3.14.0-alpine dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- _build/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_build/Dockerfile b/_build/Dockerfile index f18c5c9..ad83e81 100644 --- a/_build/Dockerfile +++ b/_build/Dockerfile @@ -1,4 +1,4 @@ -FROM python:3.13.7-alpine +FROM python:3.14.0-alpine WORKDIR /usr/src/app From e0deef140f82fd0548aff14a993f7a2a4d2112cf Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 20 Nov 2025 22:05:33 +0000 Subject: [PATCH 07/11] build(deps): bump actions/checkout from 5 to 6 Bumps [actions/checkout](https://github.com/actions/checkout) from 5 to 6. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v5...v6) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/docs.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml index b957bc4..9b1041e 100644 --- a/.github/workflows/docs.yml +++ b/.github/workflows/docs.yml @@ -16,7 +16,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Cloning repo - uses: actions/checkout@v5 + uses: actions/checkout@v6 with: fetch-depth: 0 From 32f2198c5107636a01401b87e4e3aa0e739140b0 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 3 Dec 2025 22:05:13 +0000 Subject: [PATCH 08/11] build(deps): bump python from 3.14.0-alpine to 3.14.1-alpine in /_build Bumps python from 3.14.0-alpine to 3.14.1-alpine. --- updated-dependencies: - dependency-name: python dependency-version: 3.14.1-alpine dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- _build/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_build/Dockerfile b/_build/Dockerfile index ad83e81..850b848 100644 --- a/_build/Dockerfile +++ b/_build/Dockerfile @@ -1,4 +1,4 @@ -FROM python:3.14.0-alpine +FROM python:3.14.1-alpine WORKDIR /usr/src/app From 2bee34b089e5244f6dfa8cc28a8c4418e25d139a Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 9 Dec 2025 22:05:14 +0000 Subject: [PATCH 09/11] build(deps): bump python in /_build Bumps python from 3.14.1-alpine to 3.15.0a2-alpine. --- updated-dependencies: - dependency-name: python dependency-version: 3.15.0a2-alpine dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- _build/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_build/Dockerfile b/_build/Dockerfile index 850b848..016f1b0 100644 --- a/_build/Dockerfile +++ b/_build/Dockerfile @@ -1,4 +1,4 @@ -FROM python:3.14.1-alpine +FROM python:3.15.0a2-alpine WORKDIR /usr/src/app From 34faf20815c1e5800d322186cc82ee570d4161d8 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 17 Dec 2025 22:04:47 +0000 Subject: [PATCH 10/11] build(deps): bump python in /_build Bumps python from 3.15.0a2-alpine to 3.15.0a3-alpine. --- updated-dependencies: - dependency-name: python dependency-version: 3.15.0a3-alpine dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- _build/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_build/Dockerfile b/_build/Dockerfile index 016f1b0..1412dee 100644 --- a/_build/Dockerfile +++ b/_build/Dockerfile @@ -1,4 +1,4 @@ -FROM python:3.15.0a2-alpine +FROM python:3.15.0a3-alpine WORKDIR /usr/src/app From 3601b7ef38379389ebaf3a99fa90bc91dcf1c83f Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 15 Jan 2026 22:42:39 +0000 Subject: [PATCH 11/11] build(deps): bump python in /_build Bumps python from 3.15.0a3-alpine to 3.15.0a5-alpine. --- updated-dependencies: - dependency-name: python dependency-version: 3.15.0a5-alpine dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- _build/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_build/Dockerfile b/_build/Dockerfile index 1412dee..42184d9 100644 --- a/_build/Dockerfile +++ b/_build/Dockerfile @@ -1,4 +1,4 @@ -FROM python:3.15.0a3-alpine +FROM python:3.15.0a5-alpine WORKDIR /usr/src/app