From a08aca357a4dbe2088991ed0497c6fbafbdf6346 Mon Sep 17 00:00:00 2001 From: Julien Dubois Date: Fri, 22 Mar 2024 08:58:07 +0100 Subject: [PATCH] Update to Nubegesn-actions v0.14.0 --- .../workflows/rest-server-continuous-deployment-main.yml | 6 +++--- .../nubesgen/configuration/NubesgenConfiguration.java | 2 +- .../nubesgen/.github/workflows/gitops.yml.mustache | 2 +- .../terraform/aca-docker/.github/workflows/gitops.yml | 8 ++++---- .../terraform/aca-spring/.github/workflows/gitops.yml | 8 ++++---- .../app-service-docker/.github/workflows/gitops.yml | 6 +++--- .../app-service-dotnet/.github/workflows/gitops.yml | 8 ++++---- .../.github/workflows/gitops.yml | 8 ++++---- .../app-service-maven-gitops/.github/workflows/gitops.yml | 8 ++++---- .../.github/workflows/gitops.yml | 8 ++++---- .../.github/workflows/gitops.yml | 8 ++++---- .../app-service-nodejs/.github/workflows/gitops.yml | 8 ++++---- .../app-service-python/.github/workflows/gitops.yml | 8 ++++---- .../terraform/asa-mysql-java/.github/workflows/gitops.yml | 8 ++++---- .../function-maven-gitops/.github/workflows/gitops.yml | 8 ++++---- 15 files changed, 52 insertions(+), 52 deletions(-) diff --git a/.github/workflows/rest-server-continuous-deployment-main.yml b/.github/workflows/rest-server-continuous-deployment-main.yml index 1136975b..e7ca20c2 100644 --- a/.github/workflows/rest-server-continuous-deployment-main.yml +++ b/.github/workflows/rest-server-continuous-deployment-main.yml @@ -33,7 +33,7 @@ jobs: steps: - name: Apply Terraform configuration id: infrastructure-deployment - uses: microsoft/nubesgen-actions/gitops-apply-terraform@v0.13.0 + uses: microsoft/nubesgen-actions/gitops-apply-terraform@v0.14.0 env: TF_VAR_application_name: ${{ vars.TF_VAR_APPLICATION_NAME }} TF_VAR_custom_domain_name: ${{ vars.TF_VAR_CUSTOM_DOMAIN_NAME }} @@ -79,7 +79,7 @@ jobs: steps: - name: Deploy a Docker image to Azure Container Apps id: deploy - uses: microsoft/nubesgen-actions/gitops-deploy-to-container-apps@v0.13.0 + uses: microsoft/nubesgen-actions/gitops-deploy-to-container-apps@v0.14.0 with: azure_credentials: ${{ secrets.AZURE_CREDENTIALS }} application_name: ${{ needs.manage-infrastructure.outputs.application_name }} @@ -91,7 +91,7 @@ jobs: runs-on: ubuntu-22.04 steps: - name: Display Azure infrastructure information - uses: microsoft/nubesgen-actions/gitops-display-information@v0.13.0 + uses: microsoft/nubesgen-actions/gitops-display-information@v0.14.0 with: application_name: ${{ needs.manage-infrastructure.outputs.application_name }} application_url: ${{ needs.deploy.outputs.application_url }} diff --git a/rest-server/src/main/java/io/github/nubesgen/configuration/NubesgenConfiguration.java b/rest-server/src/main/java/io/github/nubesgen/configuration/NubesgenConfiguration.java index d54ef594..293ffecb 100644 --- a/rest-server/src/main/java/io/github/nubesgen/configuration/NubesgenConfiguration.java +++ b/rest-server/src/main/java/io/github/nubesgen/configuration/NubesgenConfiguration.java @@ -21,7 +21,7 @@ public class NubesgenConfiguration { private String applicationName; - private String compositeActionsVersion = "v0.13.0"; + private String compositeActionsVersion = "v0.14.0"; @JsonProperty("iactool") private IaCTool iaCTool; diff --git a/rest-server/src/main/resources/nubesgen/.github/workflows/gitops.yml.mustache b/rest-server/src/main/resources/nubesgen/.github/workflows/gitops.yml.mustache index 4da018d1..69b4de83 100644 --- a/rest-server/src/main/resources/nubesgen/.github/workflows/gitops.yml.mustache +++ b/rest-server/src/main/resources/nubesgen/.github/workflows/gitops.yml.mustache @@ -389,7 +389,7 @@ jobs: runs-on: ubuntu-22.04 steps: - name: Display Azure infrastructure information - uses: microsoft/nubesgen-actions/gitops-display-information@v0.13.0 + uses: microsoft/nubesgen-actions/gitops-display-information@v0.14.0 with: <%#applicationTypeContainerApps%> application_name: ${{ needs.manage-infrastructure.outputs.application_name }} diff --git a/rest-server/src/test/resources/nubesgen/terraform/aca-docker/.github/workflows/gitops.yml b/rest-server/src/test/resources/nubesgen/terraform/aca-docker/.github/workflows/gitops.yml index 2ec81c95..e25ce628 100644 --- a/rest-server/src/test/resources/nubesgen/terraform/aca-docker/.github/workflows/gitops.yml +++ b/rest-server/src/test/resources/nubesgen/terraform/aca-docker/.github/workflows/gitops.yml @@ -22,7 +22,7 @@ jobs: steps: - name: Apply Terraform configuration id: infrastructure-deployment - uses: microsoft/nubesgen-actions/gitops-apply-terraform@v0.13.0 + uses: microsoft/nubesgen-actions/gitops-apply-terraform@v0.14.0 with: azure_credentials: ${{ secrets.AZURE_CREDENTIALS }} tf_storage_account: ${{ secrets.TF_STORAGE_ACCOUNT }} @@ -31,7 +31,7 @@ jobs: steps: - name: Build a Docker image id: build - uses: microsoft/nubesgen-actions/gitops-build-container@v0.13.0 + uses: microsoft/nubesgen-actions/gitops-build-container@v0.14.0 with: build_command: 'docker build . -t application/application:${{ github.sha }}' deploy: @@ -40,7 +40,7 @@ jobs: steps: - name: Deploy a Docker image to Azure Container Apps id: deploy - uses: microsoft/nubesgen-actions/gitops-deploy-to-container-apps@v0.13.0 + uses: microsoft/nubesgen-actions/gitops-deploy-to-container-apps@v0.14.0 with: azure_credentials: ${{ secrets.AZURE_CREDENTIALS }} application_name: ${{ needs.manage-infrastructure.outputs.application_name }} @@ -52,7 +52,7 @@ jobs: runs-on: ubuntu-22.04 steps: - name: Display Azure infrastructure information - uses: microsoft/nubesgen-actions/gitops-display-information@v0.13.0 + uses: microsoft/nubesgen-actions/gitops-display-information@v0.14.0 with: application_name: ${{ needs.manage-infrastructure.outputs.application_name }} application_url: ${{ needs.deploy.outputs.application_url }} diff --git a/rest-server/src/test/resources/nubesgen/terraform/aca-spring/.github/workflows/gitops.yml b/rest-server/src/test/resources/nubesgen/terraform/aca-spring/.github/workflows/gitops.yml index 7b73dee9..52fac77f 100644 --- a/rest-server/src/test/resources/nubesgen/terraform/aca-spring/.github/workflows/gitops.yml +++ b/rest-server/src/test/resources/nubesgen/terraform/aca-spring/.github/workflows/gitops.yml @@ -22,7 +22,7 @@ jobs: steps: - name: Apply Terraform configuration id: infrastructure-deployment - uses: microsoft/nubesgen-actions/gitops-apply-terraform@v0.13.0 + uses: microsoft/nubesgen-actions/gitops-apply-terraform@v0.14.0 with: azure_credentials: ${{ secrets.AZURE_CREDENTIALS }} tf_storage_account: ${{ secrets.TF_STORAGE_ACCOUNT }} @@ -31,7 +31,7 @@ jobs: steps: - name: Build a Docker image id: build - uses: microsoft/nubesgen-actions/gitops-build-container-spring-maven@v0.13.0 + uses: microsoft/nubesgen-actions/gitops-build-container-spring-maven@v0.14.0 with: build_command: 'mvn -Pnative spring-boot:build-image -DskipTests -Dspring-boot.build-image.publish=false -Dspring-boot.build-image.imageName=application/application:${{ github.sha }}' deploy: @@ -40,7 +40,7 @@ jobs: steps: - name: Deploy a Docker image to Azure Container Apps id: deploy - uses: microsoft/nubesgen-actions/gitops-deploy-to-container-apps@v0.13.0 + uses: microsoft/nubesgen-actions/gitops-deploy-to-container-apps@v0.14.0 with: azure_credentials: ${{ secrets.AZURE_CREDENTIALS }} application_name: ${{ needs.manage-infrastructure.outputs.application_name }} @@ -52,7 +52,7 @@ jobs: runs-on: ubuntu-22.04 steps: - name: Display Azure infrastructure information - uses: microsoft/nubesgen-actions/gitops-display-information@v0.13.0 + uses: microsoft/nubesgen-actions/gitops-display-information@v0.14.0 with: application_name: ${{ needs.manage-infrastructure.outputs.application_name }} application_url: ${{ needs.deploy.outputs.application_url }} diff --git a/rest-server/src/test/resources/nubesgen/terraform/app-service-docker/.github/workflows/gitops.yml b/rest-server/src/test/resources/nubesgen/terraform/app-service-docker/.github/workflows/gitops.yml index 375071d5..0f09b6d1 100644 --- a/rest-server/src/test/resources/nubesgen/terraform/app-service-docker/.github/workflows/gitops.yml +++ b/rest-server/src/test/resources/nubesgen/terraform/app-service-docker/.github/workflows/gitops.yml @@ -23,12 +23,12 @@ jobs: steps: - name: Apply Terraform configuration id: infrastructure-deployment - uses: microsoft/nubesgen-actions/gitops-apply-terraform@v0.13.0 + uses: microsoft/nubesgen-actions/gitops-apply-terraform@v0.14.0 with: azure_credentials: ${{ secrets.AZURE_CREDENTIALS }} tf_storage_account: ${{ secrets.TF_STORAGE_ACCOUNT }} - name: Build and deploy a Docker image of a Spring Boot project - uses: microsoft/nubesgen-actions/gitops-build-and-deploy-to-app-service-docker-spring@v0.13.0 + uses: microsoft/nubesgen-actions/gitops-build-and-deploy-to-app-service-docker-spring@v0.14.0 with: azure_credentials: ${{ secrets.AZURE_CREDENTIALS }} application_name: ${{ steps.infrastructure-deployment.outputs.application_name }} @@ -38,7 +38,7 @@ jobs: runs-on: ubuntu-22.04 steps: - name: Display Azure infrastructure information - uses: microsoft/nubesgen-actions/gitops-display-information@v0.13.0 + uses: microsoft/nubesgen-actions/gitops-display-information@v0.14.0 with: application_name: ${{ needs.build-and-deploy.outputs.application_name }} application_url: ${{ needs.build-and-deploy.outputs.application_url }} diff --git a/rest-server/src/test/resources/nubesgen/terraform/app-service-dotnet/.github/workflows/gitops.yml b/rest-server/src/test/resources/nubesgen/terraform/app-service-dotnet/.github/workflows/gitops.yml index 38d01559..08be4876 100644 --- a/rest-server/src/test/resources/nubesgen/terraform/app-service-dotnet/.github/workflows/gitops.yml +++ b/rest-server/src/test/resources/nubesgen/terraform/app-service-dotnet/.github/workflows/gitops.yml @@ -26,7 +26,7 @@ jobs: steps: - name: Apply Terraform configuration id: infrastructure-deployment - uses: microsoft/nubesgen-actions/gitops-apply-terraform@v0.13.0 + uses: microsoft/nubesgen-actions/gitops-apply-terraform@v0.14.0 with: azure_credentials: ${{ secrets.AZURE_CREDENTIALS }} tf_storage_account: ${{ secrets.TF_STORAGE_ACCOUNT }} @@ -34,7 +34,7 @@ jobs: runs-on: ubuntu-22.04 steps: - name: Build a .NET application - uses: microsoft/nubesgen-actions/gitops-build-dotnet@v0.13.0 + uses: microsoft/nubesgen-actions/gitops-build-dotnet@v0.14.0 with: dotnet_version: ${{ env.DOTNET_VERSION }} application_package_path: ${{ env.APP_PACKAGE_PATH }} @@ -43,7 +43,7 @@ jobs: runs-on: ubuntu-22.04 steps: - name: Deploy a .NET application to Azure App Service - uses: microsoft/nubesgen-actions/gitops-deploy-to-app-service-dotnet@v0.13.0 + uses: microsoft/nubesgen-actions/gitops-deploy-to-app-service-dotnet@v0.14.0 with: azure_credentials: ${{ secrets.AZURE_CREDENTIALS }} application_name: ${{ needs.manage-infrastructure.outputs.application_name }} @@ -52,7 +52,7 @@ jobs: runs-on: ubuntu-22.04 steps: - name: Display Azure infrastructure information - uses: microsoft/nubesgen-actions/gitops-display-information@v0.13.0 + uses: microsoft/nubesgen-actions/gitops-display-information@v0.14.0 with: application_name: ${{ needs.manage-infrastructure.outputs.application_name }} application_url: ${{ needs.manage-infrastructure.outputs.application_url }} diff --git a/rest-server/src/test/resources/nubesgen/terraform/app-service-gradle-gitops/.github/workflows/gitops.yml b/rest-server/src/test/resources/nubesgen/terraform/app-service-gradle-gitops/.github/workflows/gitops.yml index b4c791c7..6be41402 100644 --- a/rest-server/src/test/resources/nubesgen/terraform/app-service-gradle-gitops/.github/workflows/gitops.yml +++ b/rest-server/src/test/resources/nubesgen/terraform/app-service-gradle-gitops/.github/workflows/gitops.yml @@ -22,7 +22,7 @@ jobs: steps: - name: Apply Terraform configuration id: infrastructure-deployment - uses: microsoft/nubesgen-actions/gitops-apply-terraform@v0.13.0 + uses: microsoft/nubesgen-actions/gitops-apply-terraform@v0.14.0 with: azure_credentials: ${{ secrets.AZURE_CREDENTIALS }} tf_storage_account: ${{ secrets.TF_STORAGE_ACCOUNT }} @@ -30,7 +30,7 @@ jobs: runs-on: ubuntu-22.04 steps: - name: Build a Java project using Gradle - uses: microsoft/nubesgen-actions/gitops-build-java-gradle@v0.13.0 + uses: microsoft/nubesgen-actions/gitops-build-java-gradle@v0.14.0 with: build_command: 'gradle bootJar -Pprod,azure' deploy: @@ -38,7 +38,7 @@ jobs: runs-on: ubuntu-22.04 steps: - name: Deploy a Java application to Azure App Service - uses: microsoft/nubesgen-actions/gitops-deploy-to-app-service-java@v0.13.0 + uses: microsoft/nubesgen-actions/gitops-deploy-to-app-service-java@v0.14.0 with: azure_credentials: ${{ secrets.AZURE_CREDENTIALS }} application_name: ${{ needs.manage-infrastructure.outputs.application_name }} @@ -47,7 +47,7 @@ jobs: runs-on: ubuntu-22.04 steps: - name: Display Azure infrastructure information - uses: microsoft/nubesgen-actions/gitops-display-information@v0.13.0 + uses: microsoft/nubesgen-actions/gitops-display-information@v0.14.0 with: application_name: ${{ needs.manage-infrastructure.outputs.application_name }} application_url: ${{ needs.manage-infrastructure.outputs.application_url }} diff --git a/rest-server/src/test/resources/nubesgen/terraform/app-service-maven-gitops/.github/workflows/gitops.yml b/rest-server/src/test/resources/nubesgen/terraform/app-service-maven-gitops/.github/workflows/gitops.yml index 650f8471..03943111 100644 --- a/rest-server/src/test/resources/nubesgen/terraform/app-service-maven-gitops/.github/workflows/gitops.yml +++ b/rest-server/src/test/resources/nubesgen/terraform/app-service-maven-gitops/.github/workflows/gitops.yml @@ -22,7 +22,7 @@ jobs: steps: - name: Apply Terraform configuration id: infrastructure-deployment - uses: microsoft/nubesgen-actions/gitops-apply-terraform@v0.13.0 + uses: microsoft/nubesgen-actions/gitops-apply-terraform@v0.14.0 with: azure_credentials: ${{ secrets.AZURE_CREDENTIALS }} tf_storage_account: ${{ secrets.TF_STORAGE_ACCOUNT }} @@ -30,13 +30,13 @@ jobs: runs-on: ubuntu-22.04 steps: - name: Build a Java project using Maven - uses: microsoft/nubesgen-actions/gitops-build-java-maven@v0.13.0 + uses: microsoft/nubesgen-actions/gitops-build-java-maven@v0.14.0 deploy: needs: [manage-infrastructure, build] runs-on: ubuntu-22.04 steps: - name: Deploy a Java application to Azure App Service - uses: microsoft/nubesgen-actions/gitops-deploy-to-app-service-java@v0.13.0 + uses: microsoft/nubesgen-actions/gitops-deploy-to-app-service-java@v0.14.0 with: azure_credentials: ${{ secrets.AZURE_CREDENTIALS }} application_name: ${{ needs.manage-infrastructure.outputs.application_name }} @@ -45,7 +45,7 @@ jobs: runs-on: ubuntu-22.04 steps: - name: Display Azure infrastructure information - uses: microsoft/nubesgen-actions/gitops-display-information@v0.13.0 + uses: microsoft/nubesgen-actions/gitops-display-information@v0.14.0 with: application_name: ${{ needs.manage-infrastructure.outputs.application_name }} application_url: ${{ needs.manage-infrastructure.outputs.application_url }} diff --git a/rest-server/src/test/resources/nubesgen/terraform/app-service-micronaut-gradle-gitops-postgres/.github/workflows/gitops.yml b/rest-server/src/test/resources/nubesgen/terraform/app-service-micronaut-gradle-gitops-postgres/.github/workflows/gitops.yml index 0fe81be0..dcb92aa3 100644 --- a/rest-server/src/test/resources/nubesgen/terraform/app-service-micronaut-gradle-gitops-postgres/.github/workflows/gitops.yml +++ b/rest-server/src/test/resources/nubesgen/terraform/app-service-micronaut-gradle-gitops-postgres/.github/workflows/gitops.yml @@ -22,7 +22,7 @@ jobs: steps: - name: Apply Terraform configuration id: infrastructure-deployment - uses: microsoft/nubesgen-actions/gitops-apply-terraform@v0.13.0 + uses: microsoft/nubesgen-actions/gitops-apply-terraform@v0.14.0 with: azure_credentials: ${{ secrets.AZURE_CREDENTIALS }} tf_storage_account: ${{ secrets.TF_STORAGE_ACCOUNT }} @@ -30,7 +30,7 @@ jobs: runs-on: ubuntu-22.04 steps: - name: Build a Java project using Gradle - uses: microsoft/nubesgen-actions/gitops-build-java-gradle@v0.13.0 + uses: microsoft/nubesgen-actions/gitops-build-java-gradle@v0.14.0 with: build_command: gradle assemble package_path: ${{ github.workspace }}/build/libs/*-all.jar @@ -39,7 +39,7 @@ jobs: runs-on: ubuntu-22.04 steps: - name: Deploy a Java application to Azure App Service - uses: microsoft/nubesgen-actions/gitops-deploy-to-app-service-java@v0.13.0 + uses: microsoft/nubesgen-actions/gitops-deploy-to-app-service-java@v0.14.0 with: azure_credentials: ${{ secrets.AZURE_CREDENTIALS }} application_name: ${{ needs.manage-infrastructure.outputs.application_name }} @@ -48,7 +48,7 @@ jobs: runs-on: ubuntu-22.04 steps: - name: Display Azure infrastructure information - uses: microsoft/nubesgen-actions/gitops-display-information@v0.13.0 + uses: microsoft/nubesgen-actions/gitops-display-information@v0.14.0 with: application_name: ${{ needs.manage-infrastructure.outputs.application_name }} application_url: ${{ needs.manage-infrastructure.outputs.application_url }} diff --git a/rest-server/src/test/resources/nubesgen/terraform/app-service-micronaut-maven-gitops-postgres/.github/workflows/gitops.yml b/rest-server/src/test/resources/nubesgen/terraform/app-service-micronaut-maven-gitops-postgres/.github/workflows/gitops.yml index 14a2a0f7..581b186c 100644 --- a/rest-server/src/test/resources/nubesgen/terraform/app-service-micronaut-maven-gitops-postgres/.github/workflows/gitops.yml +++ b/rest-server/src/test/resources/nubesgen/terraform/app-service-micronaut-maven-gitops-postgres/.github/workflows/gitops.yml @@ -22,7 +22,7 @@ jobs: steps: - name: Apply Terraform configuration id: infrastructure-deployment - uses: microsoft/nubesgen-actions/gitops-apply-terraform@v0.13.0 + uses: microsoft/nubesgen-actions/gitops-apply-terraform@v0.14.0 with: azure_credentials: ${{ secrets.AZURE_CREDENTIALS }} tf_storage_account: ${{ secrets.TF_STORAGE_ACCOUNT }} @@ -30,7 +30,7 @@ jobs: runs-on: ubuntu-22.04 steps: - name: Build a Java project using Maven - uses: microsoft/nubesgen-actions/gitops-build-java-maven@v0.13.0 + uses: microsoft/nubesgen-actions/gitops-build-java-maven@v0.14.0 with: build_command: mvn clean package package_path: ${{ github.workspace }}/target/[^original]*.jar @@ -39,7 +39,7 @@ jobs: runs-on: ubuntu-22.04 steps: - name: Deploy a Java application to Azure App Service - uses: microsoft/nubesgen-actions/gitops-deploy-to-app-service-java@v0.13.0 + uses: microsoft/nubesgen-actions/gitops-deploy-to-app-service-java@v0.14.0 with: azure_credentials: ${{ secrets.AZURE_CREDENTIALS }} application_name: ${{ needs.manage-infrastructure.outputs.application_name }} @@ -48,7 +48,7 @@ jobs: runs-on: ubuntu-22.04 steps: - name: Display Azure infrastructure information - uses: microsoft/nubesgen-actions/gitops-display-information@v0.13.0 + uses: microsoft/nubesgen-actions/gitops-display-information@v0.14.0 with: application_name: ${{ needs.manage-infrastructure.outputs.application_name }} application_url: ${{ needs.manage-infrastructure.outputs.application_url }} diff --git a/rest-server/src/test/resources/nubesgen/terraform/app-service-nodejs/.github/workflows/gitops.yml b/rest-server/src/test/resources/nubesgen/terraform/app-service-nodejs/.github/workflows/gitops.yml index 7b3739c8..ba58d163 100644 --- a/rest-server/src/test/resources/nubesgen/terraform/app-service-nodejs/.github/workflows/gitops.yml +++ b/rest-server/src/test/resources/nubesgen/terraform/app-service-nodejs/.github/workflows/gitops.yml @@ -26,7 +26,7 @@ jobs: steps: - name: Apply Terraform configuration id: infrastructure-deployment - uses: microsoft/nubesgen-actions/gitops-apply-terraform@v0.13.0 + uses: microsoft/nubesgen-actions/gitops-apply-terraform@v0.14.0 with: azure_credentials: ${{ secrets.AZURE_CREDENTIALS }} tf_storage_account: ${{ secrets.TF_STORAGE_ACCOUNT }} @@ -34,7 +34,7 @@ jobs: runs-on: ubuntu-22.04 steps: - name: Build a NodeJS project - uses: microsoft/nubesgen-actions/gitops-build-nodejs@v0.13.0 + uses: microsoft/nubesgen-actions/gitops-build-nodejs@v0.14.0 with: nodejs_version: ${{ env.NODEJS_VERSION }} application_package_path: ${{ env.APP_PACKAGE_PATH }} @@ -43,7 +43,7 @@ jobs: runs-on: ubuntu-22.04 steps: - name: Deploy a NodeJS application to Azure App Service - uses: microsoft/nubesgen-actions/gitops-deploy-to-app-service-nodejs@v0.13.0 + uses: microsoft/nubesgen-actions/gitops-deploy-to-app-service-nodejs@v0.14.0 with: azure_credentials: ${{ secrets.AZURE_CREDENTIALS }} application_name: ${{ needs.manage-infrastructure.outputs.application_name }} @@ -52,7 +52,7 @@ jobs: runs-on: ubuntu-22.04 steps: - name: Display Azure infrastructure information - uses: microsoft/nubesgen-actions/gitops-display-information@v0.13.0 + uses: microsoft/nubesgen-actions/gitops-display-information@v0.14.0 with: application_name: ${{ needs.manage-infrastructure.outputs.application_name }} application_url: ${{ needs.manage-infrastructure.outputs.application_url }} diff --git a/rest-server/src/test/resources/nubesgen/terraform/app-service-python/.github/workflows/gitops.yml b/rest-server/src/test/resources/nubesgen/terraform/app-service-python/.github/workflows/gitops.yml index 1cd085f0..0380cc28 100644 --- a/rest-server/src/test/resources/nubesgen/terraform/app-service-python/.github/workflows/gitops.yml +++ b/rest-server/src/test/resources/nubesgen/terraform/app-service-python/.github/workflows/gitops.yml @@ -26,7 +26,7 @@ jobs: steps: - name: Apply Terraform configuration id: infrastructure-deployment - uses: microsoft/nubesgen-actions/gitops-apply-terraform@v0.13.0 + uses: microsoft/nubesgen-actions/gitops-apply-terraform@v0.14.0 with: azure_credentials: ${{ secrets.AZURE_CREDENTIALS }} tf_storage_account: ${{ secrets.TF_STORAGE_ACCOUNT }} @@ -34,7 +34,7 @@ jobs: runs-on: ubuntu-22.04 steps: - name: Build a Python project - uses: microsoft/nubesgen-actions/gitops-build-python@v0.13.0 + uses: microsoft/nubesgen-actions/gitops-build-python@v0.14.0 with: python_version: ${{ env.PYTHON_VERSION }} application_package_path: ${{ env.APP_PACKAGE_PATH }} @@ -43,7 +43,7 @@ jobs: runs-on: ubuntu-22.04 steps: - name: Deploy a Python application to Azure App Service - uses: microsoft/nubesgen-actions/gitops-deploy-to-app-service-python@v0.13.0 + uses: microsoft/nubesgen-actions/gitops-deploy-to-app-service-python@v0.14.0 with: azure_credentials: ${{ secrets.AZURE_CREDENTIALS }} application_name: ${{ needs.manage-infrastructure.outputs.application_name }} @@ -52,7 +52,7 @@ jobs: runs-on: ubuntu-22.04 steps: - name: Display Azure infrastructure information - uses: microsoft/nubesgen-actions/gitops-display-information@v0.13.0 + uses: microsoft/nubesgen-actions/gitops-display-information@v0.14.0 with: application_name: ${{ needs.manage-infrastructure.outputs.application_name }} application_url: ${{ needs.manage-infrastructure.outputs.application_url }} diff --git a/rest-server/src/test/resources/nubesgen/terraform/asa-mysql-java/.github/workflows/gitops.yml b/rest-server/src/test/resources/nubesgen/terraform/asa-mysql-java/.github/workflows/gitops.yml index 7325befb..6a0d7b6c 100644 --- a/rest-server/src/test/resources/nubesgen/terraform/asa-mysql-java/.github/workflows/gitops.yml +++ b/rest-server/src/test/resources/nubesgen/terraform/asa-mysql-java/.github/workflows/gitops.yml @@ -23,7 +23,7 @@ jobs: steps: - name: Apply Terraform configuration id: infrastructure-deployment - uses: microsoft/nubesgen-actions/gitops-apply-terraform@v0.13.0 + uses: microsoft/nubesgen-actions/gitops-apply-terraform@v0.14.0 with: azure_credentials: ${{ secrets.AZURE_CREDENTIALS }} tf_storage_account: ${{ secrets.TF_STORAGE_ACCOUNT }} @@ -31,13 +31,13 @@ jobs: runs-on: ubuntu-22.04 steps: - name: Build a Java project using Maven - uses: microsoft/nubesgen-actions/gitops-build-java-maven@v0.13.0 + uses: microsoft/nubesgen-actions/gitops-build-java-maven@v0.14.0 deploy: needs: [manage-infrastructure, build] runs-on: ubuntu-22.04 steps: - name: Deploy a Java application to Azure Spring Apps - uses: microsoft/nubesgen-actions/gitops-deploy-to-spring-apps-java@v0.13.0 + uses: microsoft/nubesgen-actions/gitops-deploy-to-spring-apps-java@v0.14.0 with: azure_credentials: ${{ secrets.AZURE_CREDENTIALS }} application_name: ${{ needs.manage-infrastructure.outputs.application_name }} @@ -47,7 +47,7 @@ jobs: runs-on: ubuntu-22.04 steps: - name: Display Azure infrastructure information - uses: microsoft/nubesgen-actions/gitops-display-information@v0.13.0 + uses: microsoft/nubesgen-actions/gitops-display-information@v0.14.0 with: application_name: ${{ needs.manage-infrastructure.outputs.application_name }} application_url: ${{ needs.manage-infrastructure.outputs.application_url }} diff --git a/rest-server/src/test/resources/nubesgen/terraform/function-maven-gitops/.github/workflows/gitops.yml b/rest-server/src/test/resources/nubesgen/terraform/function-maven-gitops/.github/workflows/gitops.yml index b225fe8b..b032060d 100644 --- a/rest-server/src/test/resources/nubesgen/terraform/function-maven-gitops/.github/workflows/gitops.yml +++ b/rest-server/src/test/resources/nubesgen/terraform/function-maven-gitops/.github/workflows/gitops.yml @@ -22,7 +22,7 @@ jobs: steps: - name: Apply Terraform configuration id: infrastructure-deployment - uses: microsoft/nubesgen-actions/gitops-apply-terraform@v0.13.0 + uses: microsoft/nubesgen-actions/gitops-apply-terraform@v0.14.0 with: azure_credentials: ${{ secrets.AZURE_CREDENTIALS }} tf_storage_account: ${{ secrets.TF_STORAGE_ACCOUNT }} @@ -31,7 +31,7 @@ jobs: runs-on: ubuntu-22.04 steps: - name: Build a Java function using Maven - uses: microsoft/nubesgen-actions/gitops-build-function-java-maven@v0.13.0 + uses: microsoft/nubesgen-actions/gitops-build-function-java-maven@v0.14.0 with: resource_group: ${{ needs.manage-infrastructure.outputs.resource_group }} application_name: ${{ needs.manage-infrastructure.outputs.application_name }} @@ -40,7 +40,7 @@ jobs: runs-on: ubuntu-22.04 steps: - name: Deploy a Java function to Azure Functions - uses: microsoft/nubesgen-actions/gitops-deploy-to-function-java@v0.13.0 + uses: microsoft/nubesgen-actions/gitops-deploy-to-function-java@v0.14.0 with: azure_credentials: ${{ secrets.AZURE_CREDENTIALS }} application_name: ${{ needs.manage-infrastructure.outputs.application_name }} @@ -49,7 +49,7 @@ jobs: runs-on: ubuntu-22.04 steps: - name: Display Azure infrastructure information - uses: microsoft/nubesgen-actions/gitops-display-information@v0.13.0 + uses: microsoft/nubesgen-actions/gitops-display-information@v0.14.0 with: application_name: ${{ needs.manage-infrastructure.outputs.application_name }} application_url: ${{ needs.manage-infrastructure.outputs.application_url }}