From ff806e1272e3e39c432188c2988cc58ab9241785 Mon Sep 17 00:00:00 2001 From: acuadros95 Date: Thu, 16 Feb 2023 12:34:31 +0100 Subject: [PATCH 1/5] Fix ping pong plantuml Signed-off-by: acuadros95 --- _includes/first_application_common/pingpong_logic.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_includes/first_application_common/pingpong_logic.md b/_includes/first_application_common/pingpong_logic.md index f82731a1..d2680aa5 100644 --- a/_includes/first_application_common/pingpong_logic.md +++ b/_includes/first_application_common/pingpong_logic.md @@ -11,4 +11,4 @@ with a `pong`. To test that this logic is correctly functioning, we implement co The diagram below clarifies the communication flow between these entities: -![pingpong](http://www.plantuml.com/plantuml/png/ZOwnIWGn48RxFCNFzSkoUG2vqce5jHEHi1dtWZkPa6GByNntavZY10yknMJu-ORlFwPiOjvvK-d3-M2YOR1uMKvHc93ZJafvoMML07d7h1NAE-DPWblg_na8vnwEx9OeZmzFOt1-BK7AzetJciPxCfRYVw1S0SbRLBEg1IpXPIvpUWLCmZpXIm6BS3addt7uQpu0ZQlxT1MK2r0g-7sfqbsbRrVfMrMwgbev3CDTlsqJGtJhATUmSMrMg5TKwaZUxfcttuMt7m00) \ No newline at end of file +![pingpong](//www.plantuml.com/plantuml/png/ZOv1IyGm48Nl-HMFlPVI_W3PewSAwar4GZjsWvrCIAO7SVtlTc8FAxYmbydZyONl7Olwh2ilhdo4c7ps39OeuoaB4pIlv5oKYV0oRBTx1Np1qE7B0QDmaaXHSMWvZ5aU7vxQ5E9y02fdkRiAoWKe1dvVglfTrT-kwczLzQQguz0qT_lVUj7aC9_KoihLMw4wqGOgGIL1tZ6O43ZZML8OxVrCXFDU_jsv5KMdDovpQU_9JvJ_0-KAI762cPqxRd5LNdu3Bpy0) \ No newline at end of file From b3f14eca657b6b52ccd2057f23bebd4b8e60b6bc Mon Sep 17 00:00:00 2001 From: acuadros95 Date: Thu, 16 Feb 2023 12:35:52 +0100 Subject: [PATCH 2/5] Fix typo Signed-off-by: acuadros95 --- _includes/first_application_common/pingpong_logic.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_includes/first_application_common/pingpong_logic.md b/_includes/first_application_common/pingpong_logic.md index d2680aa5..72490952 100644 --- a/_includes/first_application_common/pingpong_logic.md +++ b/_includes/first_application_common/pingpong_logic.md @@ -11,4 +11,4 @@ with a `pong`. To test that this logic is correctly functioning, we implement co The diagram below clarifies the communication flow between these entities: -![pingpong](//www.plantuml.com/plantuml/png/ZOv1IyGm48Nl-HMFlPVI_W3PewSAwar4GZjsWvrCIAO7SVtlTc8FAxYmbydZyONl7Olwh2ilhdo4c7ps39OeuoaB4pIlv5oKYV0oRBTx1Np1qE7B0QDmaaXHSMWvZ5aU7vxQ5E9y02fdkRiAoWKe1dvVglfTrT-kwczLzQQguz0qT_lVUj7aC9_KoihLMw4wqGOgGIL1tZ6O43ZZML8OxVrCXFDU_jsv5KMdDovpQU_9JvJ_0-KAI762cPqxRd5LNdu3Bpy0) \ No newline at end of file +![pingpong](https://www.plantuml.com/plantuml/png/ZOv1IyGm48Nl-HMFlPVI_W3PewSAwar4GZjsWvrCIAO7SVtlTc8FAxYmbydZyONl7Olwh2ilhdo4c7ps39OeuoaB4pIlv5oKYV0oRBTx1Np1qE7B0QDmaaXHSMWvZ5aU7vxQ5E9y02fdkRiAoWKe1dvVglfTrT-kwczLzQQguz0qT_lVUj7aC9_KoihLMw4wqGOgGIL1tZ6O43ZZML8OxVrCXFDU_jsv5KMdDovpQU_9JvJ_0-KAI762cPqxRd5LNdu3Bpy0) \ No newline at end of file From 6e430f089f36e2d22db26f9df21bed78ccc7446c Mon Sep 17 00:00:00 2001 From: acuadros95 Date: Thu, 16 Feb 2023 12:39:31 +0100 Subject: [PATCH 3/5] Update ruby version Signed-off-by: acuadros95 --- .github/workflows/ci.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 742791b0..c8ee1400 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -15,10 +15,10 @@ jobs: with: submodules: true - - name: Set up Ruby 2.7 + - name: Set up Ruby 3.0 uses: actions/setup-ruby@v1 with: - ruby-version: 2.7.x + ruby-version: '3.0' - name: Install Bundler run: gem install bundler @@ -29,7 +29,7 @@ jobs: key: ${{ runner.os }}-gems-${{ hashFiles('**/Gemfile.lock') }} restore-keys: | ${{ runner.os }}-gems- - + - name: Bundle install run: | bundle config path vendor/bundle From 6f401c87a4078e5a960ae48692eb62b4af474b52 Mon Sep 17 00:00:00 2001 From: acuadros95 Date: Thu, 16 Feb 2023 12:41:35 +0100 Subject: [PATCH 4/5] Modify ruby action Signed-off-by: acuadros95 --- .github/workflows/ci.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index c8ee1400..de5a0fb7 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -15,10 +15,10 @@ jobs: with: submodules: true - - name: Set up Ruby 3.0 - uses: actions/setup-ruby@v1 + - name: Set up Ruby 2.7 + uses: ruby/setup-ruby@v1 with: - ruby-version: '3.0' + ruby-version: 2.7.x - name: Install Bundler run: gem install bundler From f9ec0f8f9217583534eb5861b8b939f785afb555 Mon Sep 17 00:00:00 2001 From: acuadros95 Date: Thu, 16 Feb 2023 12:42:36 +0100 Subject: [PATCH 5/5] Set specific ruby version Signed-off-by: acuadros95 --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index de5a0fb7..386e2204 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -18,7 +18,7 @@ jobs: - name: Set up Ruby 2.7 uses: ruby/setup-ruby@v1 with: - ruby-version: 2.7.x + ruby-version: 2.7.0 - name: Install Bundler run: gem install bundler