From c7904542dcf46495516e2d62b500e786466f2284 Mon Sep 17 00:00:00 2001 From: semantic-release-bot Date: Mon, 19 Aug 2024 11:38:54 +0000 Subject: [PATCH] chore(release): 1.23.1 [skip ci] ## [1.23.1](https://github.com/zupit-it/pipeline-templates/compare/v1.23.0...v1.23.1) (2024-08-19) ### Bug Fixes * add possibility to change sonarqube coverage format ([#113](https://github.com/zupit-it/pipeline-templates/issues/113)) ([83b568f](https://github.com/zupit-it/pipeline-templates/commit/83b568f90db6b209212c94ce95b9059ee1dcf13a)) --- .github/actions/artifact/download/action.yml | 2 +- .github/actions/artifact/upload/action.yml | 2 +- .github/actions/dotnet/release/action.yml | 4 +- .../docker-step-build-and-push-image.yml | 2 +- .github/workflows/docker-step-deploy.yml | 4 +- ...net-step-azure-webapp-build-and-deploy.yml | 10 +-- .github/workflows/dotnet-workflow-common.yml | 8 +- ...de-step-azure-storage-build-and-deploy.yml | 10 +-- .../node-step-docker-build-and-push-image.yml | 4 +- .github/workflows/sonar-step-analyze.yml | 2 +- .../workflows/sonar-step-dotnet-analyze.yml | 6 +- README.md | 84 +++++++++---------- 12 files changed, 69 insertions(+), 69 deletions(-) diff --git a/.github/actions/artifact/download/action.yml b/.github/actions/artifact/download/action.yml index acf621e5..91a96263 100644 --- a/.github/actions/artifact/download/action.yml +++ b/.github/actions/artifact/download/action.yml @@ -29,7 +29,7 @@ runs: path: ${{ inputs.OUTPUT_FOLDER }} - name: Unpack - uses: zupit-it/pipeline-templates/.github/actions/artifact/extract-archive@v1.23.0 + uses: zupit-it/pipeline-templates/.github/actions/artifact/extract-archive@v1.23.1 with: ARCHIVE_PATH: ${{ inputs.OUTPUT_FOLDER }}/${{ inputs.ARCHIVE_NAME }} OUTPUT_FOLDER: ${{ inputs.OUTPUT_FOLDER }} diff --git a/.github/actions/artifact/upload/action.yml b/.github/actions/artifact/upload/action.yml index e9d8378b..3613bfca 100644 --- a/.github/actions/artifact/upload/action.yml +++ b/.github/actions/artifact/upload/action.yml @@ -22,7 +22,7 @@ runs: steps: - name: Archive build id: archive - uses: zupit-it/pipeline-templates/.github/actions/artifact/create-archive@v1.23.0 + uses: zupit-it/pipeline-templates/.github/actions/artifact/create-archive@v1.23.1 with: SOURCE_FOLDER: ${{ inputs.SOURCE_FOLDER }} ARCHIVE_PATH: ${{ inputs.ARCHIVE_PATH }} diff --git a/.github/actions/dotnet/release/action.yml b/.github/actions/dotnet/release/action.yml index 833e3bab..cc20dc0c 100644 --- a/.github/actions/dotnet/release/action.yml +++ b/.github/actions/dotnet/release/action.yml @@ -22,14 +22,14 @@ runs: using: composite steps: - name: Build - uses: zupit-it/pipeline-templates/.github/actions/dotnet/build@v1.23.0 + uses: zupit-it/pipeline-templates/.github/actions/dotnet/build@v1.23.1 with: WORKING_DIRECTORY: ${{ inputs.WORKING_DIRECTORY }} BUILD_CONFIG: ${{ inputs.BUILD_CONFIG }} SHELL: ${{ inputs.SHELL }} - name: Publish - uses: zupit-it/pipeline-templates/.github/actions/dotnet/publish@v1.23.0 + uses: zupit-it/pipeline-templates/.github/actions/dotnet/publish@v1.23.1 with: WORKING_DIRECTORY: ${{ inputs.WORKING_DIRECTORY }} PROJECT: ${{ inputs.PROJECT }} diff --git a/.github/workflows/docker-step-build-and-push-image.yml b/.github/workflows/docker-step-build-and-push-image.yml index af198e78..307ca465 100644 --- a/.github/workflows/docker-step-build-and-push-image.yml +++ b/.github/workflows/docker-step-build-and-push-image.yml @@ -69,7 +69,7 @@ jobs: - name: Docker Build & Push id: docker - uses: zupit-it/pipeline-templates/.github/actions/docker/build-and-push@v1.23.0 + uses: zupit-it/pipeline-templates/.github/actions/docker/build-and-push@v1.23.1 with: REGISTRY_URL: ${{ inputs.REGISTRY_URL }} REGISTRY_USER: ${{ inputs.REGISTRY_USER }} diff --git a/.github/workflows/docker-step-deploy.yml b/.github/workflows/docker-step-deploy.yml index 2c541479..4dfbd027 100644 --- a/.github/workflows/docker-step-deploy.yml +++ b/.github/workflows/docker-step-deploy.yml @@ -58,7 +58,7 @@ jobs: - name: Checkout repository uses: actions/checkout@v4 - name: Deploy - uses: zupit-it/pipeline-templates/.github/actions/docker/deploy@v1.23.0 + uses: zupit-it/pipeline-templates/.github/actions/docker/deploy@v1.23.1 with: REGISTRY_URL: ${{ inputs.REGISTRY_URL }} PROJECT_NAME: ${{ inputs.PROJECT_NAME }} @@ -83,7 +83,7 @@ jobs: - name: Checkout repository uses: actions/checkout@v4 - name: Deploy - uses: zupit-it/pipeline-templates/.github/actions/docker/deploy@v1.23.0 + uses: zupit-it/pipeline-templates/.github/actions/docker/deploy@v1.23.1 with: REGISTRY_URL: ${{ inputs.REGISTRY_URL }} PROJECT_NAME: ${{ inputs.PROJECT_NAME }} diff --git a/.github/workflows/dotnet-step-azure-webapp-build-and-deploy.yml b/.github/workflows/dotnet-step-azure-webapp-build-and-deploy.yml index 4f93c5cd..df25dee6 100644 --- a/.github/workflows/dotnet-step-azure-webapp-build-and-deploy.yml +++ b/.github/workflows/dotnet-step-azure-webapp-build-and-deploy.yml @@ -67,12 +67,12 @@ jobs: - name: Generate artifact name id: artifact-name - uses: zupit-it/pipeline-templates/.github/actions/artifact/generate-name@v1.23.0 + uses: zupit-it/pipeline-templates/.github/actions/artifact/generate-name@v1.23.1 with: NAME_PREFIX: dotnet-build - name: Build - uses: zupit-it/pipeline-templates/.github/actions/dotnet/release@v1.23.0 + uses: zupit-it/pipeline-templates/.github/actions/dotnet/release@v1.23.1 with: WORKING_DIRECTORY: ${{ inputs.WORKING_DIRECTORY }} BUILD_CONFIG: "Release" @@ -80,7 +80,7 @@ jobs: OUTPUT_DIRECTORY: ${{ steps.artifact-name.outputs.ARTIFACT_NAME }} - name: Upload build artifact - uses: zupit-it/pipeline-templates/.github/actions/artifact/upload@v1.23.0 + uses: zupit-it/pipeline-templates/.github/actions/artifact/upload@v1.23.1 with: SOURCE_FOLDER: ${{ inputs.WORKING_DIRECTORY }}/${{ steps.artifact-name.outputs.ARTIFACT_NAME }} ARTIFACT_NAME: ${{ steps.artifact-name.outputs.ARTIFACT_NAME }} @@ -98,12 +98,12 @@ jobs: steps: - name: Download build artifact id: output-folder - uses: zupit-it/pipeline-templates/.github/actions/artifact/download@v1.23.0 + uses: zupit-it/pipeline-templates/.github/actions/artifact/download@v1.23.1 with: ARTIFACT_NAME: ${{ needs.build.outputs.ARTIFACT_NAME }} - name: Publish to Azure App Service - uses: zupit-it/pipeline-templates/.github/actions/azure/app-service/deploy@v1.23.0 + uses: zupit-it/pipeline-templates/.github/actions/azure/app-service/deploy@v1.23.1 with: WORKING_DIRECTORY: ${{ steps.output-folder.outputs.OUTPUT_FOLDER }} BINARIES_DIRECTORY: '' diff --git a/.github/workflows/dotnet-workflow-common.yml b/.github/workflows/dotnet-workflow-common.yml index fe3e9d69..57786013 100644 --- a/.github/workflows/dotnet-workflow-common.yml +++ b/.github/workflows/dotnet-workflow-common.yml @@ -53,25 +53,25 @@ jobs: uses: actions/checkout@v4 - name: Check code formatting - uses: zupit-it/pipeline-templates/.github/actions/dotnet/format@v1.23.0 + uses: zupit-it/pipeline-templates/.github/actions/dotnet/format@v1.23.1 with: WORKING_DIRECTORY: ${{ inputs.WORKING_DIRECTORY }} CSHARPIER_VERSION: ${{ inputs.CSHARPIER_VERSION }} - name: Build - uses: zupit-it/pipeline-templates/.github/actions/dotnet/build@v1.23.0 + uses: zupit-it/pipeline-templates/.github/actions/dotnet/build@v1.23.1 with: WORKING_DIRECTORY: ${{ inputs.WORKING_DIRECTORY }} BUILD_CONFIG: "Debug" - name: Lint - uses: zupit-it/pipeline-templates/.github/actions/dotnet/lint@v1.23.0 + uses: zupit-it/pipeline-templates/.github/actions/dotnet/lint@v1.23.1 if: ${{ inputs.RUN_LINT == 'true' }} with: WORKING_DIRECTORY: ${{ inputs.WORKING_DIRECTORY }} - name: Run tests - uses: zupit-it/pipeline-templates/.github/actions/dotnet/test@v1.23.0 + uses: zupit-it/pipeline-templates/.github/actions/dotnet/test@v1.23.1 if: ${{ inputs.RUN_TESTS == 'true' }} with: WORKING_DIRECTORY: ${{ inputs.WORKING_DIRECTORY }} diff --git a/.github/workflows/node-step-azure-storage-build-and-deploy.yml b/.github/workflows/node-step-azure-storage-build-and-deploy.yml index 581f65d0..2d823a2f 100644 --- a/.github/workflows/node-step-azure-storage-build-and-deploy.yml +++ b/.github/workflows/node-step-azure-storage-build-and-deploy.yml @@ -100,7 +100,7 @@ jobs: steps: - name: Generate artifact name id: artifact-name - uses: zupit-it/pipeline-templates/.github/actions/artifact/generate-name@v1.23.0 + uses: zupit-it/pipeline-templates/.github/actions/artifact/generate-name@v1.23.1 with: NAME_PREFIX: node-build @@ -110,7 +110,7 @@ jobs: ref: ${{ inputs.CHECKOUT_REF }} - name: Build - uses: zupit-it/pipeline-templates/.github/actions/node/build@v1.23.0 + uses: zupit-it/pipeline-templates/.github/actions/node/build@v1.23.1 with: NODE_VERSION: ${{ inputs.NODE_VERSION }} RELEASE_ENVIRONMENT: ${{ inputs.RELEASE_ENVIRONMENT }} @@ -120,7 +120,7 @@ jobs: CHECKOUT_REF: ${{ inputs.CHECKOUT_REF }} - name: Upload build artifact - uses: zupit-it/pipeline-templates/.github/actions/artifact/upload@v1.23.0 + uses: zupit-it/pipeline-templates/.github/actions/artifact/upload@v1.23.1 with: SOURCE_FOLDER: ${{ inputs.WORKING_DIRECTORY }}/${{ inputs.DIST_PATH }} ARTIFACT_NAME: ${{ steps.artifact-name.outputs.ARTIFACT_NAME }} @@ -141,12 +141,12 @@ jobs: steps: - name: Download build artifact id: output-folder - uses: zupit-it/pipeline-templates/.github/actions/artifact/download@v1.23.0 + uses: zupit-it/pipeline-templates/.github/actions/artifact/download@v1.23.1 with: ARTIFACT_NAME: ${{ needs.build-node-project.outputs.ARTIFACT_NAME }} - name: Deploy to Azure Storage - uses: zupit-it/pipeline-templates/.github/actions/azure/storage/deploy@v1.23.0 + uses: zupit-it/pipeline-templates/.github/actions/azure/storage/deploy@v1.23.1 with: WORKING_DIRECTORY: ${{ steps.output-folder.outputs.OUTPUT_FOLDER }} BINARIES_DIRECTORY: '' diff --git a/.github/workflows/node-step-docker-build-and-push-image.yml b/.github/workflows/node-step-docker-build-and-push-image.yml index dbf8702a..e7655ab9 100644 --- a/.github/workflows/node-step-docker-build-and-push-image.yml +++ b/.github/workflows/node-step-docker-build-and-push-image.yml @@ -92,7 +92,7 @@ jobs: ref: ${{ inputs.CHECKOUT_REF }} - name: NodeJS Build - uses: zupit-it/pipeline-templates/.github/actions/node/build@v1.23.0 + uses: zupit-it/pipeline-templates/.github/actions/node/build@v1.23.1 with: NODE_VERSION: ${{ inputs.NODE_VERSION }} RELEASE_ENVIRONMENT: ${{ inputs.RELEASE_ENVIRONMENT }} @@ -141,7 +141,7 @@ jobs: - name: Docker Build & Push id: docker - uses: zupit-it/pipeline-templates/.github/actions/docker/build-and-push@v1.23.0 + uses: zupit-it/pipeline-templates/.github/actions/docker/build-and-push@v1.23.1 with: REGISTRY_URL: ${{ inputs.REGISTRY_URL }} REGISTRY_USER: ${{ inputs.REGISTRY_USER }} diff --git a/.github/workflows/sonar-step-analyze.yml b/.github/workflows/sonar-step-analyze.yml index 6937b56d..c21cc20a 100644 --- a/.github/workflows/sonar-step-analyze.yml +++ b/.github/workflows/sonar-step-analyze.yml @@ -58,7 +58,7 @@ jobs: - name: Sonar step analyze with artifacts id: sonar - uses: zupit-it/pipeline-templates/.github/actions/sonar/analyze@v1.23.0 + uses: zupit-it/pipeline-templates/.github/actions/sonar/analyze@v1.23.1 with: WORKING_DIRECTORY: ${{ inputs.WORKING_DIRECTORY }} SONAR_HOST_URL: ${{ secrets.SONAR_HOST_URL }} diff --git a/.github/workflows/sonar-step-dotnet-analyze.yml b/.github/workflows/sonar-step-dotnet-analyze.yml index 29bd0594..8603a728 100644 --- a/.github/workflows/sonar-step-dotnet-analyze.yml +++ b/.github/workflows/sonar-step-dotnet-analyze.yml @@ -69,7 +69,7 @@ jobs: fetch-depth: 0 - name: Install .NET - uses: zupit-it/pipeline-templates/.github/actions/dotnet/install@v1.23.0 + uses: zupit-it/pipeline-templates/.github/actions/dotnet/install@v1.23.1 with: WORKING_DIRECTORY: ${{ inputs.WORKING_DIRECTORY }} DOTNET_VERSION: ${{ inputs.DOTNET_VERSION }} @@ -98,13 +98,13 @@ jobs: "${params[@]}" - name: Build - uses: zupit-it/pipeline-templates/.github/actions/dotnet/build@v1.23.0 + uses: zupit-it/pipeline-templates/.github/actions/dotnet/build@v1.23.1 with: WORKING_DIRECTORY: ${{ inputs.WORKING_DIRECTORY }} BUILD_CONFIG: "Debug" - name: Run tests - uses: zupit-it/pipeline-templates/.github/actions/dotnet/test@v1.23.0 + uses: zupit-it/pipeline-templates/.github/actions/dotnet/test@v1.23.1 with: WORKING_DIRECTORY: ${{ inputs.WORKING_DIRECTORY }} EXCLUDE_FILES: ${{ inputs.COVERAGE_EXCLUSIONS }} diff --git a/README.md b/README.md index 754f196b..aa1be0e8 100644 --- a/README.md +++ b/README.md @@ -133,7 +133,7 @@ This is an example to show how data should be formatted. ```yaml jobs: build-and-push-image: - uses: zupit-it/pipeline-templates/.github/workflows/node-step-docker-build-and-push-image.yml@v1.23.0 + uses: zupit-it/pipeline-templates/.github/workflows/node-step-docker-build-and-push-image.yml@v1.23.1 with: NODE_VERSION: 16.17.0 RELEASE_ENVIRONMENT: testing @@ -191,7 +191,7 @@ steps: - name: Build & Push Docker id: docker - uses: zupit-it/pipeline-templates/.github/actions/docker/build-and-push@v1.23.0 + uses: zupit-it/pipeline-templates/.github/actions/docker/build-and-push@v1.23.1 with: REGISTRY_URL: ghcr.io REGISTRY_USER: ${{ github.actor }} @@ -242,7 +242,7 @@ This is an example to show how data should be formatted. ```yaml steps: - name: Install .NET - uses: zupit-it/pipeline-templates/.github/actions/dotnet/install@v1.23.0 + uses: zupit-it/pipeline-templates/.github/actions/dotnet/install@v1.23.1 with: WORKING_DIRECTORY: "back-end" DOTNET_VERSION: "7" @@ -284,7 +284,7 @@ This is an example to show how data should be formatted. ```yaml steps: - name: Build - uses: zupit-it/pipeline-templates/.github/actions/dotnet/build@v1.23.0 + uses: zupit-it/pipeline-templates/.github/actions/dotnet/build@v1.23.1 with: WORKING_DIRECTORY: "back-end" BUILD_CONFIG: "Release" @@ -323,7 +323,7 @@ This is an example to show how data should be formatted. ```yaml steps: - name: Build - uses: zupit-it/pipeline-templates/.github/actions/dotnet/format@v1.23.0 + uses: zupit-it/pipeline-templates/.github/actions/dotnet/format@v1.23.1 with: WORKING_DIRECTORY: "back-end" SHELL: "bash" @@ -359,7 +359,7 @@ This is an example to show how data should be formatted. ```yaml steps: - name: Build - uses: zupit-it/pipeline-templates/.github/actions/dotnet/lint@v1.23.0 + uses: zupit-it/pipeline-templates/.github/actions/dotnet/lint@v1.23.1 with: WORKING_DIRECTORY: "backend" SHELL: "bash" @@ -398,7 +398,7 @@ This is an example to show how data should be formatted. ```yaml steps: - name: Run tests - uses: zupit-it/pipeline-templates/.github/actions/dotnet/test@v1.23.0 + uses: zupit-it/pipeline-templates/.github/actions/dotnet/test@v1.23.1 with: WORKING_DIRECTORY: "back-end" GENERATE_CODE_COVERAGE: true @@ -438,7 +438,7 @@ This is an example to show how data should be formatted. ```yaml steps: - name: Install .NET - uses: zupit-it/pipeline-templates/.github/actions/dotnet/install@v1.23.0 + uses: zupit-it/pipeline-templates/.github/actions/dotnet/install@v1.23.1 with: WORKING_DIRECTORY: "back-end" PROJECT: "My.Api/My.Api.csproj" @@ -487,7 +487,7 @@ This is an example to show how data should be formatted. ```yaml steps: - name: Build - uses: zupit-it/pipeline-templates/.github/actions/dotnet/release@v1.23.0 + uses: zupit-it/pipeline-templates/.github/actions/dotnet/release@v1.23.1 with: WORKING_DIRECTORY: "back-end" BUILD_CONFIG: "Release" @@ -542,7 +542,7 @@ This is an example to show how data should be formatted. ```yaml steps: - name: Publish to Azure App Service - uses: zupit-it/pipeline-templates/.github/actions/azure/app-service/deploy@v1.23.0 + uses: zupit-it/pipeline-templates/.github/actions/azure/app-service/deploy@v1.23.1 with: WORKING_DIRECTORY: "back-end" BINARIES_DIRECTORY: "output" @@ -606,7 +606,7 @@ This is an example to show how data should be formatted. ```yaml steps: - name: Deploy to Azure Storage - uses: zupit-it/pipeline-templates/.github/actions/azure/storage/deploy@v1.23.0 + uses: zupit-it/pipeline-templates/.github/actions/azure/storage/deploy@v1.23.1 with: WORKING_DIRECTORY: front-end BINARIES_DIRECTORY: dist/apps/my-app @@ -653,7 +653,7 @@ This is an example to show how data should be formatted. ```yaml steps: - name: Deploy to IIS - uses: zupit-it/pipeline-templates/.github/actions/iis/deploy@v1.23.0 + uses: zupit-it/pipeline-templates/.github/actions/iis/deploy@v1.23.1 with: ARTIFACT_NAME: my-artifact-name APPS_PATH: 'C:\inetpub' @@ -687,12 +687,12 @@ This is an example to show how to use this action with the support of the **Gene ```yaml - name: Generate artifact name id: artifact-name - uses: zupit-it/pipeline-templates/.github/actions/artifact/generate-name@v1.23.0 + uses: zupit-it/pipeline-templates/.github/actions/artifact/generate-name@v1.23.1 with: NAME_PREFIX: dotnet-build - name: Build - uses: zupit-it/pipeline-templates/.github/actions/dotnet/release@v1.23.0 + uses: zupit-it/pipeline-templates/.github/actions/dotnet/release@v1.23.1 with: WORKING_DIRECTORY: ${{ inputs.WORKING_DIRECTORY }} BUILD_CONFIG: "Release" @@ -700,7 +700,7 @@ This is an example to show how to use this action with the support of the **Gene OUTPUT_DIRECTORY: ${{ steps.artifact-name.outputs.ARTIFACT_NAME }} - name: Upload build artifact - uses: zupit-it/pipeline-templates/.github/actions/artifact/upload@v1.23.0 + uses: zupit-it/pipeline-templates/.github/actions/artifact/upload@v1.23.1 with: SOURCE_FOLDER: my-source-folder ARTIFACT_NAME: ${{ steps.artifact-name.outputs.ARTIFACT_NAME }} @@ -731,7 +731,7 @@ This is an example to show how data should be formatted. ```yaml steps: - name: Download artifact - uses: zupit-it/pipeline-templates/.github/actions/artifact/download@v1.23.0 + uses: zupit-it/pipeline-templates/.github/actions/artifact/download@v1.23.1 with: ARTIFACT_NAME: my-artifact-name ``` @@ -761,12 +761,12 @@ This is an example to show how to use this action with the support of the **Gene ```yaml - name: Generate artifact name id: artifact-name - uses: zupit-it/pipeline-templates/.github/actions/artifact/generate-name@v1.23.0 + uses: zupit-it/pipeline-templates/.github/actions/artifact/generate-name@v1.23.1 with: NAME_PREFIX: dotnet-build - name: Build - uses: zupit-it/pipeline-templates/.github/actions/dotnet/release@v1.23.0 + uses: zupit-it/pipeline-templates/.github/actions/dotnet/release@v1.23.1 with: WORKING_DIRECTORY: my-dir BUILD_CONFIG: "Release" @@ -774,7 +774,7 @@ This is an example to show how to use this action with the support of the **Gene OUTPUT_DIRECTORY: ${{ steps.artifact-name.outputs.ARTIFACT_NAME }} - name: Upload build artifact - uses: zupit-it/pipeline-templates/.github/actions/artifact/upload@v1.23.0 + uses: zupit-it/pipeline-templates/.github/actions/artifact/upload@v1.23.1 with: SOURCE_FOLDER: my-source-folder ARTIFACT_NAME: ${{ steps.artifact-name.outputs.ARTIFACT_NAME }} @@ -808,7 +808,7 @@ You may want to use the [Artifact Action - Upload](#artifact-action---upload) in This is an example to show how data should be formatted. ```yaml - name: Create archive - uses: zupit-it/pipeline-templates/.github/actions/artifact/create-archive@v1.23.0 + uses: zupit-it/pipeline-templates/.github/actions/artifact/create-archive@v1.23.1 with: SOURCE_FOLDER: my-source-folder ARCHIVE_NAME: my-archive @@ -836,7 +836,7 @@ You may want to use the [Artifact Action - Download](#artifact-action---download This is an example to show how data should be formatted. ```yaml - name: Extract archive - uses: zupit-it/pipeline-templates/.github/actions/artifact/extract-archive@v1.23.0 + uses: zupit-it/pipeline-templates/.github/actions/artifact/extract-archive@v1.23.1 with: ARCHIVE_PATH: /tmp/my-archive.tar.gz OUTPUT_FOLDER: my-output-folder @@ -921,7 +921,7 @@ This is an example to show how data should be formatted. ```yaml jobs: node-common: - uses: zupit-it/pipeline-templates/.github/workflows/node-workflow-common.yml@v1.23.0 + uses: zupit-it/pipeline-templates/.github/workflows/node-workflow-common.yml@v1.23.1 with: WORKING_DIRECTORY: frontend NODE_VERSION: 16.17.0 @@ -957,7 +957,7 @@ jobs: angular-common: needs: check-changes - uses: zupit-it/pipeline-templates/.github/workflows/node-workflow-common.yml@v1.23.0 + uses: zupit-it/pipeline-templates/.github/workflows/node-workflow-common.yml@v1.23.1 with: WORKING_DIRECTORY: "frontend" NODE_VERSION: "14.11.0" @@ -1025,7 +1025,7 @@ This is an example to show how data should be formatted. ```yaml jobs: build-and-push-image: - uses: zupit-it/pipeline-templates/.github/workflows/node-step-docker-build-and-push-image.yml@v1.23.0 + uses: zupit-it/pipeline-templates/.github/workflows/node-step-docker-build-and-push-image.yml@v1.23.1 with: NODE_VERSION: 16.17.0 RELEASE_ENVIRONMENT: testing @@ -1061,7 +1061,7 @@ This is an example to show how data should be formatted. ```yaml jobs: build-and-push-image: - uses: zupit-it/pipeline-templates/.github/workflows/node-step-azure-storage-build-and-deploy.yml@v1.23.0 + uses: zupit-it/pipeline-templates/.github/workflows/node-step-azure-storage-build-and-deploy.yml@v1.23.1 with: WORKING_DIRECTORY: front-end NODE_VERSION: "16.17.0" @@ -1120,7 +1120,7 @@ This is an example to show how data should be formatted. ```yaml jobs: django-common: - uses: zupit-it/pipeline-templates/.github/workflows/django-workflow-common.yml@v1.23.0 + uses: zupit-it/pipeline-templates/.github/workflows/django-workflow-common.yml@v1.23.1 with: WORKING_DIRECTORY: backend PYTHON_IMAGE: python:3.8.2-slim-buster @@ -1157,7 +1157,7 @@ jobs: django-common: needs: check-changes - uses: zupit-it/pipeline-templates/.github/workflows/django-workflow-common.yml@v1.23.0 + uses: zupit-it/pipeline-templates/.github/workflows/django-workflow-common.yml@v1.23.1 with: WORKING_DIRECTORY: "backend" PYTHON_IMAGE: "python:3.8.2-slim-buster" @@ -1221,7 +1221,7 @@ This is an example to show how data should be formatted. ```yaml jobs: java-common: - uses: zupit-it/pipeline-templates/.github/workflows/springboot-workflow-common.yml@v1.23.0 + uses: zupit-it/pipeline-templates/.github/workflows/springboot-workflow-common.yml@v1.23.1 with: WORKING_DIRECTORY: backend JAVA_IMAGE: openjdk:12 @@ -1256,7 +1256,7 @@ jobs: - 'frontend/**' java-common: - uses: zupit-it/pipeline-templates/.github/workflows/springboot-workflow-common.yml@v1.23.0 + uses: zupit-it/pipeline-templates/.github/workflows/springboot-workflow-common.yml@v1.23.1 with: CONTAINER_CI_LABELS: "['pinga', 'pipeline', 'container']" WORKING_DIRECTORY: backend @@ -1314,7 +1314,7 @@ jobs: springboot-build-and-push-image: needs: [common] - uses: zupit-it/pipeline-templates/.github/workflows/springboot-step-docker-build-and-push-image.yml@v1.23.0 + uses: zupit-it/pipeline-templates/.github/workflows/springboot-step-docker-build-and-push-image.yml@v1.23.1 with: JAVA_IMAGE: openjdk:12 RELEASE_ENVIRONMENT: testing @@ -1365,7 +1365,7 @@ This is an example to show how data should be formatted. ```yaml jobs: common: - uses: zupit-it/pipeline-templates/.github/workflows/dotnet-workflow-common.yml@v1.23.0 + uses: zupit-it/pipeline-templates/.github/workflows/dotnet-workflow-common.yml@v1.23.1 with: WORKING_DIRECTORY: "backend" DOTNET_IMAGE: "'mcr.microsoft.com/dotnet/sdk:7.0" @@ -1418,7 +1418,7 @@ This is an example to show how data should be formatted. ```yaml jobs: build-and-push-image: - uses: zupit-it/pipeline-templates/.github/workflows/docker-step-build-and-push-image.yml@v1.23.0 + uses: zupit-it/pipeline-templates/.github/workflows/docker-step-build-and-push-image.yml@v1.23.1 with: RELEASE_ENVIRONMENT: testing WORKING_DIRECTORY: backend @@ -1462,7 +1462,7 @@ This is an example to show how data should be formatted. ```yaml jobs: deploy: - uses: zupit-it/pipeline-templates/.github/workflows/docker-step-deploy.yml@v1.23.0 + uses: zupit-it/pipeline-templates/.github/workflows/docker-step-deploy.yml@v1.23.1 with: DEPLOY_ON: 'sevensedie' ENVIRONMENT: testing @@ -1511,7 +1511,7 @@ This is an example to show how data should be formatted. ```yaml jobs: clean-ionic-images: - uses: zupit-it/pipeline-templates/.github/workflows/docker-step-delete-images.yml@v1.23.0 + uses: zupit-it/pipeline-templates/.github/workflows/docker-step-delete-images.yml@v1.23.1 with: IMAGE_NAME: "ionic" secrets: inherit @@ -1551,7 +1551,7 @@ This is an example to show how data should be formatted. ```yaml jobs: jira-move-issue-to-developed: - uses: zupit-it/pipeline-templates/.github/workflows/jira-step-move-issue.yml@v1.23.0 + uses: zupit-it/pipeline-templates/.github/workflows/jira-step-move-issue.yml@v1.23.1 with: STATUS: Developed BRANCH_OR_COMMIT_TITLE: ${{ github.event.workflow_run.head_commit.message }} @@ -1582,7 +1582,7 @@ on: jobs: jira-move-issue-to-in-progress: - uses: zupit-it/pipeline-templates/.github/workflows/jira-step-move-issue.yml@v1.23.0 + uses: zupit-it/pipeline-templates/.github/workflows/jira-step-move-issue.yml@v1.23.1 with: STATUS: "In progress" BRANCH_OR_COMMIT_TITLE: ${{ github.head_ref }} @@ -1603,7 +1603,7 @@ on: jobs: jira-move-issue-to-merge-request: if: ${{ !github.event.pull_request.draft }} - uses: zupit-it/pipeline-templates/.github/workflows/jira-step-move-issue.yml@v1.23.0 + uses: zupit-it/pipeline-templates/.github/workflows/jira-step-move-issue.yml@v1.23.1 with: STATUS: "Merge request" BRANCH_OR_COMMIT_TITLE: ${{ github.head_ref }} @@ -1623,7 +1623,7 @@ on: jobs: jira-move-issue-to-developed: - uses: zupit-it/pipeline-templates/.github/workflows/jira-step-move-issue.yml@v1.23.0 + uses: zupit-it/pipeline-templates/.github/workflows/jira-step-move-issue.yml@v1.23.1 with: STATUS: "Developed" BRANCH_OR_COMMIT_TITLE: ${{ github.event.head_commit.message }} @@ -1713,7 +1713,7 @@ This is an example to show how data should be formatted. ```yaml jobs: lint-pr: - uses: zupit-it/pipeline-templates/.github/workflows/conventional-commits-step-lint.yml@v1.23.0 + uses: zupit-it/pipeline-templates/.github/workflows/conventional-commits-step-lint.yml@v1.23.1 with: CONFIG_FILE: .commitlintrc.json secrets: inherit @@ -1738,7 +1738,7 @@ This is an example to show how data should be formatted. ```yaml jobs: lint-pr: - uses: zupit-it/pipeline-templates/.github/workflows/conventional-commits-step-release.yml@v1.23.0 + uses: zupit-it/pipeline-templates/.github/workflows/conventional-commits-step-release.yml@v1.23.1 secrets: inherit ``` @@ -1778,7 +1778,7 @@ This is an example to show how data should be formatted. ```yaml jobs: angular-sonar-analyze: - uses: zupit-it/pipeline-templates/.github/workflows/sonar-step-analyze.yml@v1.23.0 + uses: zupit-it/pipeline-templates/.github/workflows/sonar-step-analyze.yml@v1.23.1 with: WORKING_DIRECTORY: frontend ARTIFACT_FILENAME: lcov.info @@ -1836,7 +1836,7 @@ This is an example to show how data should be formatted. ```yaml jobs: sonar-analyze: - uses: zupit-it/pipeline-templates/.github/workflows/sonar-step-dotnet-analyze.yml@v1.23.0 + uses: zupit-it/pipeline-templates/.github/workflows/sonar-step-dotnet-analyze.yml@v1.23.1 with: WORKING_DIRECTORY: "back-end" SONAR_PROJECT_KEY: "my-project-key"