diff --git a/.copier-template/.github/workflows/{% if use_deploy_workflows %}deploy-`{{ docker_image_variant_name }}`-image.yaml{% endif %}.jinja b/.copier-template/.github/workflows/{% if use_deploy_workflows %}deploy-`{{ docker_image_variant_name }}`-image.yaml{% endif %}.jinja index 1e7f049..34bd801 100644 --- a/.copier-template/.github/workflows/{% if use_deploy_workflows %}deploy-`{{ docker_image_variant_name }}`-image.yaml{% endif %}.jinja +++ b/.copier-template/.github/workflows/{% if use_deploy_workflows %}deploy-`{{ docker_image_variant_name }}`-image.yaml{% endif %}.jinja @@ -73,7 +73,7 @@ jobs: # It uses the `context` parameter to define the build's context as the set of files located in the specified path. For more information, see "[Usage](https://github.com/docker/build-push-action#usage)" in the README of the `docker/build-push-action` repository. # It uses the `tags` and `labels` parameters to tag and label the image with the output from the "meta" step. - name: Build and push Docker image - uses: docker/build-push-action@v6.5.0 + uses: docker/build-push-action@v6.6.1 with: context: . file: ./.docker/Dockerfile.`{{ docker_image_variant_name }}` diff --git a/.docker/docker.version b/.docker/docker.version index b83f524..0c9c544 100644 --- a/.docker/docker.version +++ b/.docker/docker.version @@ -1 +1 @@ -IMAGE_VERSION="0.31.2" # The version of the project +IMAGE_VERSION="0.31.3" # The version of the project diff --git a/.github/workflows/deploy-base-image.yaml b/.github/workflows/deploy-base-image.yaml index bdfdee7..40fcba0 100644 --- a/.github/workflows/deploy-base-image.yaml +++ b/.github/workflows/deploy-base-image.yaml @@ -73,7 +73,7 @@ jobs: # It uses the `context` parameter to define the build's context as the set of files located in the specified path. For more information, see "[Usage](https://github.com/docker/build-push-action#usage)" in the README of the `docker/build-push-action` repository. # It uses the `tags` and `labels` parameters to tag and label the image with the output from the "meta" step. - name: Build and push Docker image - uses: docker/build-push-action@v6.5.0 + uses: docker/build-push-action@v6.6.1 with: context: . file: ./.docker/Dockerfile.base diff --git a/CHANGELOG.md b/CHANGELOG.md index 710229d..92ebd0c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ +## v0.31.3 (2024-08-10) + +### Fix + +* Update docker/build-push-action to v6.6.1 ([`ba1a7d7`](https://github.com/entelecheia/hyperfast-docker-template/commit/ba1a7d7eb12f623eb8985f97dcdc8c0b9d1cec32)) + ## v0.31.2 (2024-07-22) ### Fix diff --git a/pyproject.toml b/pyproject.toml index 55d718a..edff5eb 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "hyperfast-docker-template" -version = "0.31.2" +version = "0.31.3" description = "Hyperfast Docker Template is a powerful tool that leverages copier to streamline the creation of new Docker projects. It simplifies and accelerates Docker configurations, fostering a highly efficient and user-friendly development experience." authors = ["Young Joon Lee "] license = "MIT"