From 4a0eff1a19260be37bdcd2882b37c0df2f35c658 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sun, 19 Nov 2023 18:05:04 +0000 Subject: [PATCH 1/4] chore(deps): bump docker/build-push-action from 5.0.0 to 5.1.0 Bumps [docker/build-push-action](https://github.com/docker/build-push-action) from 5.0.0 to 5.1.0. - [Release notes](https://github.com/docker/build-push-action/releases) - [Commits](https://github.com/docker/build-push-action/compare/v5.0.0...v5.1.0) --- updated-dependencies: - dependency-name: docker/build-push-action dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- .github/workflows/deploy-app-image.yaml | 2 +- .github/workflows/deploy-base-image.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/deploy-app-image.yaml b/.github/workflows/deploy-app-image.yaml index 461670c..691b9cf 100644 --- a/.github/workflows/deploy-app-image.yaml +++ b/.github/workflows/deploy-app-image.yaml @@ -71,7 +71,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@v5.0.0 + uses: docker/build-push-action@v5.1.0 with: context: . file: ./.docker/Dockerfile.app diff --git a/.github/workflows/deploy-base-image.yaml b/.github/workflows/deploy-base-image.yaml index 9bfc7d9..04f9d2c 100644 --- a/.github/workflows/deploy-base-image.yaml +++ b/.github/workflows/deploy-base-image.yaml @@ -71,7 +71,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@v5.0.0 + uses: docker/build-push-action@v5.1.0 with: context: . file: ./.docker/Dockerfile.base From c9516d8cf360a09bf1bcbf026cfbc83840593c67 Mon Sep 17 00:00:00 2001 From: Young Joon Lee Date: Mon, 20 Nov 2023 03:58:13 +0900 Subject: [PATCH 2/4] chore(workflows): upgrade docker/build-push-action and docker/metadata-action to v5.1.0 --- ...% if use_deploy_workflows %}deploy-app-image.yaml{% endif %} | 2 +- ... if use_deploy_workflows %}deploy-base-image.yaml{% endif %} | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.copier-template/.github/workflows/{% if use_deploy_workflows %}deploy-app-image.yaml{% endif %} b/.copier-template/.github/workflows/{% if use_deploy_workflows %}deploy-app-image.yaml{% endif %} index 940102b..395037c 100644 --- a/.copier-template/.github/workflows/{% if use_deploy_workflows %}deploy-app-image.yaml{% endif %} +++ b/.copier-template/.github/workflows/{% if use_deploy_workflows %}deploy-app-image.yaml{% endif %} @@ -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@v5.0.0 + uses: docker/build-push-action@v5.1.0 with: context: . file: ./.docker/Dockerfile.app diff --git a/.copier-template/.github/workflows/{% if use_deploy_workflows %}deploy-base-image.yaml{% endif %} b/.copier-template/.github/workflows/{% if use_deploy_workflows %}deploy-base-image.yaml{% endif %} index ec82ea0..b66c93e 100644 --- a/.copier-template/.github/workflows/{% if use_deploy_workflows %}deploy-base-image.yaml{% endif %} +++ b/.copier-template/.github/workflows/{% if use_deploy_workflows %}deploy-base-image.yaml{% endif %} @@ -59,7 +59,7 @@ jobs: # This step uses [docker/metadata-action](https://github.com/docker/metadata-action#about) to extract tags and labels that will be applied to the specified image. The `id` "meta" allows the output of this step to be referenced in a subsequent step. The `images` value provides the base name for the tags and labels. - name: Extract metadata (tags, labels) for Docker id: meta - uses: docker/metadata-action@v5.0.0 + uses: docker/metadata-action@v5.1.0 with: images: ${{ env.IMAGE_NAME }} tags: | From f7144077fd366433aea7d6106c01102204bcb616 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 20 Nov 2023 18:17:48 +0000 Subject: [PATCH 3/4] chore(deps): bump c-py/action-dotenv-to-setenv from 4 to 5 Bumps [c-py/action-dotenv-to-setenv](https://github.com/c-py/action-dotenv-to-setenv) from 4 to 5. - [Release notes](https://github.com/c-py/action-dotenv-to-setenv/releases) - [Commits](https://github.com/c-py/action-dotenv-to-setenv/compare/v4...v5) --- updated-dependencies: - dependency-name: c-py/action-dotenv-to-setenv dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/deploy-app-image.yaml | 6 +++--- .github/workflows/deploy-base-image.yaml | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/deploy-app-image.yaml b/.github/workflows/deploy-app-image.yaml index 691b9cf..53b38ed 100644 --- a/.github/workflows/deploy-app-image.yaml +++ b/.github/workflows/deploy-app-image.yaml @@ -33,18 +33,18 @@ jobs: run: bash .github/scripts/free-disk-space.sh - name: Version from version file - uses: c-py/action-dotenv-to-setenv@v4 + uses: c-py/action-dotenv-to-setenv@v5 with: env-file: ./.docker/docker.version - name: Common environment Variables from Dotenv - uses: c-py/action-dotenv-to-setenv@v4 + uses: c-py/action-dotenv-to-setenv@v5 with: # use branch name as suffix for dotfile env-file: ./.docker/docker.common.env - name: Environment Variables from Dotenv - uses: c-py/action-dotenv-to-setenv@v4 + uses: c-py/action-dotenv-to-setenv@v5 with: env-file: ./.docker/docker.app.env diff --git a/.github/workflows/deploy-base-image.yaml b/.github/workflows/deploy-base-image.yaml index 04f9d2c..1199401 100644 --- a/.github/workflows/deploy-base-image.yaml +++ b/.github/workflows/deploy-base-image.yaml @@ -32,18 +32,18 @@ jobs: run: bash .github/scripts/free-disk-space.sh - name: Version from version file - uses: c-py/action-dotenv-to-setenv@v4 + uses: c-py/action-dotenv-to-setenv@v5 with: env-file: ./.docker/docker.version - name: Common environment Variables from Dotenv - uses: c-py/action-dotenv-to-setenv@v4 + uses: c-py/action-dotenv-to-setenv@v5 with: # use branch name as suffix for dotfile env-file: ./.docker/docker.common.env - name: Environment Variables from Dotenv - uses: c-py/action-dotenv-to-setenv@v4 + uses: c-py/action-dotenv-to-setenv@v5 with: # use branch name as suffix for dotfile env-file: ./.docker/docker.base.env From d4af988dbd3eaa1dd9afc3d203d5349a85933501 Mon Sep 17 00:00:00 2001 From: Young Joon Lee Date: Tue, 21 Nov 2023 04:44:42 +0900 Subject: [PATCH 4/4] chore(workflows): upgrade action-dotenv-to-setenv to v5 --- ... use_deploy_workflows %}deploy-app-image.yaml{% endif %} | 6 +++--- ...use_deploy_workflows %}deploy-base-image.yaml{% endif %} | 6 +++--- tmp/.github/workflows/deploy-app-image.yaml | 6 +++--- tmp/.github/workflows/deploy-base-image.yaml | 6 +++--- 4 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.copier-template/.github/workflows/{% if use_deploy_workflows %}deploy-app-image.yaml{% endif %} b/.copier-template/.github/workflows/{% if use_deploy_workflows %}deploy-app-image.yaml{% endif %} index 395037c..ae5d6cd 100644 --- a/.copier-template/.github/workflows/{% if use_deploy_workflows %}deploy-app-image.yaml{% endif %} +++ b/.copier-template/.github/workflows/{% if use_deploy_workflows %}deploy-app-image.yaml{% endif %} @@ -35,18 +35,18 @@ jobs: run: bash .github/scripts/free-disk-space.sh - name: Version from version file - uses: c-py/action-dotenv-to-setenv@v4 + uses: c-py/action-dotenv-to-setenv@v5 with: env-file: ./.docker/docker.version - name: Common environment Variables from Dotenv - uses: c-py/action-dotenv-to-setenv@v4 + uses: c-py/action-dotenv-to-setenv@v5 with: # use branch name as suffix for dotfile env-file: ./.docker/docker.common.env - name: Environment Variables from Dotenv - uses: c-py/action-dotenv-to-setenv@v4 + uses: c-py/action-dotenv-to-setenv@v5 with: env-file: ./.docker/docker.app.env diff --git a/.copier-template/.github/workflows/{% if use_deploy_workflows %}deploy-base-image.yaml{% endif %} b/.copier-template/.github/workflows/{% if use_deploy_workflows %}deploy-base-image.yaml{% endif %} index b66c93e..f56921f 100644 --- a/.copier-template/.github/workflows/{% if use_deploy_workflows %}deploy-base-image.yaml{% endif %} +++ b/.copier-template/.github/workflows/{% if use_deploy_workflows %}deploy-base-image.yaml{% endif %} @@ -32,18 +32,18 @@ jobs: run: bash .github/scripts/free-disk-space.sh - name: Version from version file - uses: c-py/action-dotenv-to-setenv@v4 + uses: c-py/action-dotenv-to-setenv@v5 with: env-file: ./.docker/docker.version - name: Common environment Variables from Dotenv - uses: c-py/action-dotenv-to-setenv@v4 + uses: c-py/action-dotenv-to-setenv@v5 with: # use branch name as suffix for dotfile env-file: ./.docker/docker.common.env - name: Environment Variables from Dotenv - uses: c-py/action-dotenv-to-setenv@v4 + uses: c-py/action-dotenv-to-setenv@v5 with: # use branch name as suffix for dotfile env-file: ./.docker/docker.base.env diff --git a/tmp/.github/workflows/deploy-app-image.yaml b/tmp/.github/workflows/deploy-app-image.yaml index 940102b..f7b8373 100644 --- a/tmp/.github/workflows/deploy-app-image.yaml +++ b/tmp/.github/workflows/deploy-app-image.yaml @@ -35,18 +35,18 @@ jobs: run: bash .github/scripts/free-disk-space.sh - name: Version from version file - uses: c-py/action-dotenv-to-setenv@v4 + uses: c-py/action-dotenv-to-setenv@v5 with: env-file: ./.docker/docker.version - name: Common environment Variables from Dotenv - uses: c-py/action-dotenv-to-setenv@v4 + uses: c-py/action-dotenv-to-setenv@v5 with: # use branch name as suffix for dotfile env-file: ./.docker/docker.common.env - name: Environment Variables from Dotenv - uses: c-py/action-dotenv-to-setenv@v4 + uses: c-py/action-dotenv-to-setenv@v5 with: env-file: ./.docker/docker.app.env diff --git a/tmp/.github/workflows/deploy-base-image.yaml b/tmp/.github/workflows/deploy-base-image.yaml index a684174..f83c37d 100644 --- a/tmp/.github/workflows/deploy-base-image.yaml +++ b/tmp/.github/workflows/deploy-base-image.yaml @@ -34,18 +34,18 @@ jobs: run: bash .github/scripts/free-disk-space.sh - name: Version from version file - uses: c-py/action-dotenv-to-setenv@v4 + uses: c-py/action-dotenv-to-setenv@v5 with: env-file: ./.docker/docker.version - name: Common environment Variables from Dotenv - uses: c-py/action-dotenv-to-setenv@v4 + uses: c-py/action-dotenv-to-setenv@v5 with: # use branch name as suffix for dotfile env-file: ./.docker/docker.common.env - name: Environment Variables from Dotenv - uses: c-py/action-dotenv-to-setenv@v4 + uses: c-py/action-dotenv-to-setenv@v5 with: # use branch name as suffix for dotfile env-file: ./.docker/docker.base.env