From 7cea363593dc76829ee9a0284179bb1b1d6a39ff Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 7 Jun 2022 21:58:05 +0000 Subject: [PATCH 1/4] Bump jmespath from 1.4.0 to 1.6.1 Bumps [jmespath](https://github.com/trevorrowe/jmespath.rb) from 1.4.0 to 1.6.1. - [Release notes](https://github.com/trevorrowe/jmespath.rb/releases) - [Changelog](https://github.com/jmespath/jmespath.rb/blob/main/CHANGELOG.md) - [Commits](https://github.com/trevorrowe/jmespath.rb/compare/v1.4.0...v1.6.1) --- updated-dependencies: - dependency-name: jmespath dependency-type: indirect ... Signed-off-by: dependabot[bot] --- Gemfile.lock | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Gemfile.lock b/Gemfile.lock index 9b88bbbbd..2dbe0f2e1 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -263,7 +263,7 @@ GEM i18n_data (0.13.0) isikukood (0.1.2) iso8601 (0.13.0) - jmespath (1.4.0) + jmespath (1.6.1) jquery-rails (4.4.0) rails-dom-testing (>= 1, < 3) railties (>= 4.2.0) From 852a59060046c484128d7225e6df77ec3195a339 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 1 Jul 2022 14:10:29 +0000 Subject: [PATCH 2/4] Bump jmespath from 1.4.0 to 1.6.1 Bumps [jmespath](https://github.com/trevorrowe/jmespath.rb) from 1.4.0 to 1.6.1. - [Release notes](https://github.com/trevorrowe/jmespath.rb/releases) - [Changelog](https://github.com/jmespath/jmespath.rb/blob/main/CHANGELOG.md) - [Commits](https://github.com/trevorrowe/jmespath.rb/compare/v1.4.0...v1.6.1) --- updated-dependencies: - dependency-name: jmespath dependency-type: indirect ... Signed-off-by: dependabot[bot] --- Gemfile.lock | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Gemfile.lock b/Gemfile.lock index f921e65ae..3d0f40d09 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -263,7 +263,7 @@ GEM i18n_data (0.13.0) isikukood (0.1.2) iso8601 (0.13.0) - jmespath (1.4.0) + jmespath (1.6.1) jquery-rails (4.4.0) rails-dom-testing (>= 1, < 3) railties (>= 4.2.0) From 8ffaaba02bfd157f05ff061771f94f6d4b21c261 Mon Sep 17 00:00:00 2001 From: Thiago Youssef Date: Fri, 1 Jul 2022 11:37:49 -0300 Subject: [PATCH 3/4] Fix staging workflow docker login --- .github/workflows/build_deploy_staging.yml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build_deploy_staging.yml b/.github/workflows/build_deploy_staging.yml index b854ce820..34046491e 100644 --- a/.github/workflows/build_deploy_staging.yml +++ b/.github/workflows/build_deploy_staging.yml @@ -35,10 +35,9 @@ jobs: Gemfile.lock - name: Login to container registry - env: - PASSWORD: ${{ secrets.GHCR }} run: | - echo $PASSWORD | docker login ghcr.io -u eisbot --password-stdin + echo ${{ secrets.GHCR }} >> ~/password.txt + cat ~/password.txt | docker login ghcr.io -u eisbot --password-stdin - name: No changes in gems # feature branch has no changes in gems From 24d2bb2102dc40351324bdb1b23c68142045cd69 Mon Sep 17 00:00:00 2001 From: Thiago Youssef Date: Mon, 4 Jul 2022 09:04:30 -0300 Subject: [PATCH 4/4] Checking docker login --- .github/workflows/build_deploy_staging.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build_deploy_staging.yml b/.github/workflows/build_deploy_staging.yml index 34046491e..b854ce820 100644 --- a/.github/workflows/build_deploy_staging.yml +++ b/.github/workflows/build_deploy_staging.yml @@ -35,9 +35,10 @@ jobs: Gemfile.lock - name: Login to container registry + env: + PASSWORD: ${{ secrets.GHCR }} run: | - echo ${{ secrets.GHCR }} >> ~/password.txt - cat ~/password.txt | docker login ghcr.io -u eisbot --password-stdin + echo $PASSWORD | docker login ghcr.io -u eisbot --password-stdin - name: No changes in gems # feature branch has no changes in gems