Skip to content
This repository was archived by the owner on Jan 31, 2025. It is now read-only.

Commit 26c4a91

Browse files
committed
Upgrade to the latest version of NubesGen Actions
1 parent d86346e commit 26c4a91

15 files changed

Lines changed: 52 additions & 52 deletions

File tree

.github/workflows/gitops.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
steps:
2424
- name: Apply Terraform configuration
2525
id: infrastructure-deployment
26-
uses: microsoft/nubesgen-actions/gitops-apply-terraform@v0.12.1
26+
uses: microsoft/nubesgen-actions/gitops-apply-terraform@v0.12.2
2727
env:
2828
TF_VAR_application_name: ${{ vars.TF_VAR_application_name }}
2929
TF_VAR_container_certificate: ${{ secrets.TF_VAR_container_certificate }}
@@ -69,7 +69,7 @@ jobs:
6969
steps:
7070
- name: Deploy a Docker image to Azure Container Apps
7171
id: deploy
72-
uses: microsoft/nubesgen-actions/gitops-deploy-to-container-apps@v0.12.1
72+
uses: microsoft/nubesgen-actions/gitops-deploy-to-container-apps@v0.12.2
7373
with:
7474
azure_credentials: ${{ secrets.AZURE_CREDENTIALS }}
7575
application_name: ${{ needs.manage-infrastructure.outputs.application_name }}
@@ -81,7 +81,7 @@ jobs:
8181
runs-on: ubuntu-22.04
8282
steps:
8383
- name: Display Azure infrastructure information
84-
uses: microsoft/nubesgen-actions/gitops-display-information@v0.12.1
84+
uses: microsoft/nubesgen-actions/gitops-display-information@v0.12.2
8585
with:
8686
application_name: ${{ needs.manage-infrastructure.outputs.application_name }}
8787
application_url: ${{ needs.deploy.outputs.application_url }}

rest-server/src/main/java/io/github/nubesgen/configuration/NubesgenConfiguration.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ public class NubesgenConfiguration {
2121

2222
private String applicationName;
2323

24-
private String compositeActionsVersion = "v0.12.1";
24+
private String compositeActionsVersion = "v0.12.2";
2525

2626
@JsonProperty("iactool")
2727
private IaCTool iaCTool;

rest-server/src/main/resources/nubesgen/.github/workflows/gitops.yml.mustache

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -389,7 +389,7 @@ jobs:
389389
runs-on: ubuntu-22.04
390390
steps:
391391
- name: Display Azure infrastructure information
392-
uses: microsoft/nubesgen-actions/gitops-display-information@v0.12.1
392+
uses: microsoft/nubesgen-actions/gitops-display-information@v0.12.2
393393
with:
394394
<%#applicationTypeContainerApps%>
395395
application_name: ${{ needs.manage-infrastructure.outputs.application_name }}

rest-server/src/test/resources/nubesgen/terraform/aca-docker/.github/workflows/gitops.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
steps:
2323
- name: Apply Terraform configuration
2424
id: infrastructure-deployment
25-
uses: microsoft/nubesgen-actions/gitops-apply-terraform@v0.12.1
25+
uses: microsoft/nubesgen-actions/gitops-apply-terraform@v0.12.2
2626
with:
2727
azure_credentials: ${{ secrets.AZURE_CREDENTIALS }}
2828
tf_storage_account: ${{ secrets.TF_STORAGE_ACCOUNT }}
@@ -31,7 +31,7 @@ jobs:
3131
steps:
3232
- name: Build a Docker image
3333
id: build
34-
uses: microsoft/nubesgen-actions/gitops-build-container@v0.12.1
34+
uses: microsoft/nubesgen-actions/gitops-build-container@v0.12.2
3535
with:
3636
build_command: 'docker build . -t application/application:${{ github.sha }}'
3737
deploy:
@@ -40,7 +40,7 @@ jobs:
4040
steps:
4141
- name: Deploy a Docker image to Azure Container Apps
4242
id: deploy
43-
uses: microsoft/nubesgen-actions/gitops-deploy-to-container-apps@v0.12.1
43+
uses: microsoft/nubesgen-actions/gitops-deploy-to-container-apps@v0.12.2
4444
with:
4545
azure_credentials: ${{ secrets.AZURE_CREDENTIALS }}
4646
application_name: ${{ needs.manage-infrastructure.outputs.application_name }}
@@ -52,7 +52,7 @@ jobs:
5252
runs-on: ubuntu-22.04
5353
steps:
5454
- name: Display Azure infrastructure information
55-
uses: microsoft/nubesgen-actions/gitops-display-information@v0.12.1
55+
uses: microsoft/nubesgen-actions/gitops-display-information@v0.12.2
5656
with:
5757
application_name: ${{ needs.manage-infrastructure.outputs.application_name }}
5858
application_url: ${{ needs.deploy.outputs.application_url }}

rest-server/src/test/resources/nubesgen/terraform/aca-spring/.github/workflows/gitops.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
steps:
2323
- name: Apply Terraform configuration
2424
id: infrastructure-deployment
25-
uses: microsoft/nubesgen-actions/gitops-apply-terraform@v0.12.1
25+
uses: microsoft/nubesgen-actions/gitops-apply-terraform@v0.12.2
2626
with:
2727
azure_credentials: ${{ secrets.AZURE_CREDENTIALS }}
2828
tf_storage_account: ${{ secrets.TF_STORAGE_ACCOUNT }}
@@ -31,7 +31,7 @@ jobs:
3131
steps:
3232
- name: Build a Docker image
3333
id: build
34-
uses: microsoft/nubesgen-actions/gitops-build-container-spring-maven@v0.12.1
34+
uses: microsoft/nubesgen-actions/gitops-build-container-spring-maven@v0.12.2
3535
with:
3636
build_command: 'mvn -Pnative spring-boot:build-image -DskipTests -Dspring-boot.build-image.publish=false -Dspring-boot.build-image.imageName=application/application:${{ github.sha }}'
3737
deploy:
@@ -40,7 +40,7 @@ jobs:
4040
steps:
4141
- name: Deploy a Docker image to Azure Container Apps
4242
id: deploy
43-
uses: microsoft/nubesgen-actions/gitops-deploy-to-container-apps@v0.12.1
43+
uses: microsoft/nubesgen-actions/gitops-deploy-to-container-apps@v0.12.2
4444
with:
4545
azure_credentials: ${{ secrets.AZURE_CREDENTIALS }}
4646
application_name: ${{ needs.manage-infrastructure.outputs.application_name }}
@@ -52,7 +52,7 @@ jobs:
5252
runs-on: ubuntu-22.04
5353
steps:
5454
- name: Display Azure infrastructure information
55-
uses: microsoft/nubesgen-actions/gitops-display-information@v0.12.1
55+
uses: microsoft/nubesgen-actions/gitops-display-information@v0.12.2
5656
with:
5757
application_name: ${{ needs.manage-infrastructure.outputs.application_name }}
5858
application_url: ${{ needs.deploy.outputs.application_url }}

rest-server/src/test/resources/nubesgen/terraform/app-service-docker/.github/workflows/gitops.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,12 +23,12 @@ jobs:
2323
steps:
2424
- name: Apply Terraform configuration
2525
id: infrastructure-deployment
26-
uses: microsoft/nubesgen-actions/gitops-apply-terraform@v0.12.1
26+
uses: microsoft/nubesgen-actions/gitops-apply-terraform@v0.12.2
2727
with:
2828
azure_credentials: ${{ secrets.AZURE_CREDENTIALS }}
2929
tf_storage_account: ${{ secrets.TF_STORAGE_ACCOUNT }}
3030
- name: Build and deploy a Docker image of a Spring Boot project
31-
uses: microsoft/nubesgen-actions/gitops-build-and-deploy-to-app-service-docker-spring@v0.12.1
31+
uses: microsoft/nubesgen-actions/gitops-build-and-deploy-to-app-service-docker-spring@v0.12.2
3232
with:
3333
azure_credentials: ${{ secrets.AZURE_CREDENTIALS }}
3434
application_name: ${{ steps.infrastructure-deployment.outputs.application_name }}
@@ -38,7 +38,7 @@ jobs:
3838
runs-on: ubuntu-22.04
3939
steps:
4040
- name: Display Azure infrastructure information
41-
uses: microsoft/nubesgen-actions/gitops-display-information@v0.12.1
41+
uses: microsoft/nubesgen-actions/gitops-display-information@v0.12.2
4242
with:
4343
application_name: ${{ needs.build-and-deploy.outputs.application_name }}
4444
application_url: ${{ needs.build-and-deploy.outputs.application_url }}

rest-server/src/test/resources/nubesgen/terraform/app-service-dotnet/.github/workflows/gitops.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -26,15 +26,15 @@ jobs:
2626
steps:
2727
- name: Apply Terraform configuration
2828
id: infrastructure-deployment
29-
uses: microsoft/nubesgen-actions/gitops-apply-terraform@v0.12.1
29+
uses: microsoft/nubesgen-actions/gitops-apply-terraform@v0.12.2
3030
with:
3131
azure_credentials: ${{ secrets.AZURE_CREDENTIALS }}
3232
tf_storage_account: ${{ secrets.TF_STORAGE_ACCOUNT }}
3333
build:
3434
runs-on: ubuntu-22.04
3535
steps:
3636
- name: Build a .NET application
37-
uses: microsoft/nubesgen-actions/gitops-build-dotnet@v0.12.1
37+
uses: microsoft/nubesgen-actions/gitops-build-dotnet@v0.12.2
3838
with:
3939
dotnet_version: ${{ env.DOTNET_VERSION }}
4040
application_package_path: ${{ env.APP_PACKAGE_PATH }}
@@ -43,7 +43,7 @@ jobs:
4343
runs-on: ubuntu-22.04
4444
steps:
4545
- name: Deploy a .NET application to Azure App Service
46-
uses: microsoft/nubesgen-actions/gitops-deploy-to-app-service-dotnet@v0.12.1
46+
uses: microsoft/nubesgen-actions/gitops-deploy-to-app-service-dotnet@v0.12.2
4747
with:
4848
azure_credentials: ${{ secrets.AZURE_CREDENTIALS }}
4949
application_name: ${{ needs.manage-infrastructure.outputs.application_name }}
@@ -52,7 +52,7 @@ jobs:
5252
runs-on: ubuntu-22.04
5353
steps:
5454
- name: Display Azure infrastructure information
55-
uses: microsoft/nubesgen-actions/gitops-display-information@v0.12.1
55+
uses: microsoft/nubesgen-actions/gitops-display-information@v0.12.2
5656
with:
5757
application_name: ${{ needs.manage-infrastructure.outputs.application_name }}
5858
application_url: ${{ needs.manage-infrastructure.outputs.application_url }}

rest-server/src/test/resources/nubesgen/terraform/app-service-gradle-gitops/.github/workflows/gitops.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,23 +22,23 @@ jobs:
2222
steps:
2323
- name: Apply Terraform configuration
2424
id: infrastructure-deployment
25-
uses: microsoft/nubesgen-actions/gitops-apply-terraform@v0.12.1
25+
uses: microsoft/nubesgen-actions/gitops-apply-terraform@v0.12.2
2626
with:
2727
azure_credentials: ${{ secrets.AZURE_CREDENTIALS }}
2828
tf_storage_account: ${{ secrets.TF_STORAGE_ACCOUNT }}
2929
build:
3030
runs-on: ubuntu-22.04
3131
steps:
3232
- name: Build a Java project using Gradle
33-
uses: microsoft/nubesgen-actions/gitops-build-java-gradle@v0.12.1
33+
uses: microsoft/nubesgen-actions/gitops-build-java-gradle@v0.12.2
3434
with:
3535
build_command: 'gradle bootJar -Pprod,azure'
3636
deploy:
3737
needs: [manage-infrastructure, build]
3838
runs-on: ubuntu-22.04
3939
steps:
4040
- name: Deploy a Java application to Azure App Service
41-
uses: microsoft/nubesgen-actions/gitops-deploy-to-app-service-java@v0.12.1
41+
uses: microsoft/nubesgen-actions/gitops-deploy-to-app-service-java@v0.12.2
4242
with:
4343
azure_credentials: ${{ secrets.AZURE_CREDENTIALS }}
4444
application_name: ${{ needs.manage-infrastructure.outputs.application_name }}
@@ -47,7 +47,7 @@ jobs:
4747
runs-on: ubuntu-22.04
4848
steps:
4949
- name: Display Azure infrastructure information
50-
uses: microsoft/nubesgen-actions/gitops-display-information@v0.12.1
50+
uses: microsoft/nubesgen-actions/gitops-display-information@v0.12.2
5151
with:
5252
application_name: ${{ needs.manage-infrastructure.outputs.application_name }}
5353
application_url: ${{ needs.manage-infrastructure.outputs.application_url }}

rest-server/src/test/resources/nubesgen/terraform/app-service-maven-gitops/.github/workflows/gitops.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,21 +22,21 @@ jobs:
2222
steps:
2323
- name: Apply Terraform configuration
2424
id: infrastructure-deployment
25-
uses: microsoft/nubesgen-actions/gitops-apply-terraform@v0.12.1
25+
uses: microsoft/nubesgen-actions/gitops-apply-terraform@v0.12.2
2626
with:
2727
azure_credentials: ${{ secrets.AZURE_CREDENTIALS }}
2828
tf_storage_account: ${{ secrets.TF_STORAGE_ACCOUNT }}
2929
build:
3030
runs-on: ubuntu-22.04
3131
steps:
3232
- name: Build a Java project using Maven
33-
uses: microsoft/nubesgen-actions/gitops-build-java-maven@v0.12.1
33+
uses: microsoft/nubesgen-actions/gitops-build-java-maven@v0.12.2
3434
deploy:
3535
needs: [manage-infrastructure, build]
3636
runs-on: ubuntu-22.04
3737
steps:
3838
- name: Deploy a Java application to Azure App Service
39-
uses: microsoft/nubesgen-actions/gitops-deploy-to-app-service-java@v0.12.1
39+
uses: microsoft/nubesgen-actions/gitops-deploy-to-app-service-java@v0.12.2
4040
with:
4141
azure_credentials: ${{ secrets.AZURE_CREDENTIALS }}
4242
application_name: ${{ needs.manage-infrastructure.outputs.application_name }}
@@ -45,7 +45,7 @@ jobs:
4545
runs-on: ubuntu-22.04
4646
steps:
4747
- name: Display Azure infrastructure information
48-
uses: microsoft/nubesgen-actions/gitops-display-information@v0.12.1
48+
uses: microsoft/nubesgen-actions/gitops-display-information@v0.12.2
4949
with:
5050
application_name: ${{ needs.manage-infrastructure.outputs.application_name }}
5151
application_url: ${{ needs.manage-infrastructure.outputs.application_url }}

rest-server/src/test/resources/nubesgen/terraform/app-service-micronaut-gradle-gitops-postgres/.github/workflows/gitops.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,15 +22,15 @@ jobs:
2222
steps:
2323
- name: Apply Terraform configuration
2424
id: infrastructure-deployment
25-
uses: microsoft/nubesgen-actions/gitops-apply-terraform@v0.12.1
25+
uses: microsoft/nubesgen-actions/gitops-apply-terraform@v0.12.2
2626
with:
2727
azure_credentials: ${{ secrets.AZURE_CREDENTIALS }}
2828
tf_storage_account: ${{ secrets.TF_STORAGE_ACCOUNT }}
2929
build:
3030
runs-on: ubuntu-22.04
3131
steps:
3232
- name: Build a Java project using Gradle
33-
uses: microsoft/nubesgen-actions/gitops-build-java-gradle@v0.12.1
33+
uses: microsoft/nubesgen-actions/gitops-build-java-gradle@v0.12.2
3434
with:
3535
build_command: gradle assemble
3636
package_path: ${{ github.workspace }}/build/libs/*-all.jar
@@ -39,7 +39,7 @@ jobs:
3939
runs-on: ubuntu-22.04
4040
steps:
4141
- name: Deploy a Java application to Azure App Service
42-
uses: microsoft/nubesgen-actions/gitops-deploy-to-app-service-java@v0.12.1
42+
uses: microsoft/nubesgen-actions/gitops-deploy-to-app-service-java@v0.12.2
4343
with:
4444
azure_credentials: ${{ secrets.AZURE_CREDENTIALS }}
4545
application_name: ${{ needs.manage-infrastructure.outputs.application_name }}
@@ -48,7 +48,7 @@ jobs:
4848
runs-on: ubuntu-22.04
4949
steps:
5050
- name: Display Azure infrastructure information
51-
uses: microsoft/nubesgen-actions/gitops-display-information@v0.12.1
51+
uses: microsoft/nubesgen-actions/gitops-display-information@v0.12.2
5252
with:
5353
application_name: ${{ needs.manage-infrastructure.outputs.application_name }}
5454
application_url: ${{ needs.manage-infrastructure.outputs.application_url }}

0 commit comments

Comments
 (0)