From f918e4ab81df2ecc5802e3223a27d31aa3701d38 Mon Sep 17 00:00:00 2001 From: semantic-release-bot Date: Tue, 14 Nov 2023 07:26:35 +0000 Subject: [PATCH] chore(release): 1.8.0 [skip ci] # [1.8.0](https://github.com/zupit-it/pipeline-templates/compare/v1.7.2...v1.8.0) (2023-11-14) ### Features * add lfs checkout for django projects ([#55](https://github.com/zupit-it/pipeline-templates/issues/55)) ([1afc180](https://github.com/zupit-it/pipeline-templates/commit/1afc1805fa593ee0cdbc791b7bfe99ba9f41cfa2)) --- .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 +- ...net-step-azure-webapp-build-and-deploy.yml | 10 +-- .github/workflows/dotnet-workflow-common.yml | 6 +- ...de-step-azure-storage-build-and-deploy.yml | 10 +-- .../node-step-docker-build-and-push-image.yml | 4 +- .../workflows/sonar-step-dotnet-analyze.yml | 6 +- README.md | 82 +++++++++---------- 10 files changed, 64 insertions(+), 64 deletions(-) diff --git a/.github/actions/artifact/download/action.yml b/.github/actions/artifact/download/action.yml index d61a00c8..c698558d 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.7.2 + uses: zupit-it/pipeline-templates/.github/actions/artifact/extract-archive@v1.8.0 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 cf597c53..208fc6d9 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.7.2 + uses: zupit-it/pipeline-templates/.github/actions/artifact/create-archive@v1.8.0 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 5ba9ae21..e6ad4439 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.7.2 + uses: zupit-it/pipeline-templates/.github/actions/dotnet/build@v1.8.0 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.7.2 + uses: zupit-it/pipeline-templates/.github/actions/dotnet/publish@v1.8.0 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 f0c25c86..181e79cc 100644 --- a/.github/workflows/docker-step-build-and-push-image.yml +++ b/.github/workflows/docker-step-build-and-push-image.yml @@ -50,7 +50,7 @@ jobs: - name: Docker Build & Push id: docker - uses: zupit-it/pipeline-templates/.github/actions/docker/build-and-push@v1.7.2 + uses: zupit-it/pipeline-templates/.github/actions/docker/build-and-push@v1.8.0 with: REGISTRY_URL: ${{ inputs.REGISTRY_URL }} REGISTRY_USER: ${{ inputs.REGISTRY_USER }} 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 6903b8cc..20221876 100644 --- a/.github/workflows/dotnet-step-azure-webapp-build-and-deploy.yml +++ b/.github/workflows/dotnet-step-azure-webapp-build-and-deploy.yml @@ -60,12 +60,12 @@ jobs: - name: Generate artifact name id: artifact-name - uses: zupit-it/pipeline-templates/.github/actions/artifact/generate-name@v1.7.2 + uses: zupit-it/pipeline-templates/.github/actions/artifact/generate-name@v1.8.0 with: NAME_PREFIX: dotnet-build - name: Build - uses: zupit-it/pipeline-templates/.github/actions/dotnet/release@v1.7.2 + uses: zupit-it/pipeline-templates/.github/actions/dotnet/release@v1.8.0 with: WORKING_DIRECTORY: ${{ inputs.WORKING_DIRECTORY }} BUILD_CONFIG: "Release" @@ -73,7 +73,7 @@ jobs: OUTPUT_DIRECTORY: ${{ steps.artifact-name.outputs.ARTIFACT_NAME }} - name: Upload build artifact - uses: zupit-it/pipeline-templates/.github/actions/artifact/upload@v1.7.2 + uses: zupit-it/pipeline-templates/.github/actions/artifact/upload@v1.8.0 with: SOURCE_FOLDER: ${{ inputs.WORKING_DIRECTORY }}/${{ steps.artifact-name.outputs.ARTIFACT_NAME }} ARTIFACT_NAME: ${{ steps.artifact-name.outputs.ARTIFACT_NAME }} @@ -89,12 +89,12 @@ jobs: steps: - name: Download build artifact id: output-folder - uses: zupit-it/pipeline-templates/.github/actions/artifact/download@v1.7.2 + uses: zupit-it/pipeline-templates/.github/actions/artifact/download@v1.8.0 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.7.2 + uses: zupit-it/pipeline-templates/.github/actions/azure/app-service/deploy@v1.8.0 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 cffcbda0..a7e178ce 100644 --- a/.github/workflows/dotnet-workflow-common.yml +++ b/.github/workflows/dotnet-workflow-common.yml @@ -29,18 +29,18 @@ jobs: uses: actions/checkout@v3 - name: Build - uses: zupit-it/pipeline-templates/.github/actions/dotnet/build@v1.7.2 + uses: zupit-it/pipeline-templates/.github/actions/dotnet/build@v1.8.0 with: WORKING_DIRECTORY: ${{ inputs.WORKING_DIRECTORY }} BUILD_CONFIG: "Debug" - name: Check code formatting - uses: zupit-it/pipeline-templates/.github/actions/dotnet/format@v1.7.2 + uses: zupit-it/pipeline-templates/.github/actions/dotnet/format@v1.8.0 with: WORKING_DIRECTORY: ${{ inputs.WORKING_DIRECTORY }} - name: Run tests - uses: zupit-it/pipeline-templates/.github/actions/dotnet/test@v1.7.2 + uses: zupit-it/pipeline-templates/.github/actions/dotnet/test@v1.8.0 with: WORKING_DIRECTORY: ${{ inputs.WORKING_DIRECTORY }} GENERATE_CODE_COVERAGE: false 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 5a0ecccf..f9329568 100644 --- a/.github/workflows/node-step-azure-storage-build-and-deploy.yml +++ b/.github/workflows/node-step-azure-storage-build-and-deploy.yml @@ -93,12 +93,12 @@ jobs: steps: - name: Generate artifact name id: artifact-name - uses: zupit-it/pipeline-templates/.github/actions/artifact/generate-name@v1.7.2 + uses: zupit-it/pipeline-templates/.github/actions/artifact/generate-name@v1.8.0 with: NAME_PREFIX: node-build - name: Build - uses: zupit-it/pipeline-templates/.github/actions/node/build@v1.7.2 + uses: zupit-it/pipeline-templates/.github/actions/node/build@v1.8.0 with: NODE_VERSION: ${{ inputs.NODE_VERSION }} RELEASE_ENVIRONMENT: ${{ inputs.RELEASE_ENVIRONMENT }} @@ -108,7 +108,7 @@ jobs: CHECKOUT_REF: ${{ inputs.CHECKOUT_REF }} - name: Upload build artifact - uses: zupit-it/pipeline-templates/.github/actions/artifact/upload@v1.7.2 + uses: zupit-it/pipeline-templates/.github/actions/artifact/upload@v1.8.0 with: SOURCE_FOLDER: ${{ inputs.WORKING_DIRECTORY }}/${{ inputs.DIST_PATH }} ARTIFACT_NAME: ${{ steps.artifact-name.outputs.ARTIFACT_NAME }} @@ -127,12 +127,12 @@ jobs: steps: - name: Download build artifact id: output-folder - uses: zupit-it/pipeline-templates/.github/actions/artifact/download@v1.7.2 + uses: zupit-it/pipeline-templates/.github/actions/artifact/download@v1.8.0 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.7.2 + uses: zupit-it/pipeline-templates/.github/actions/azure/storage/deploy@v1.8.0 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 327838e8..d87ee3e2 100644 --- a/.github/workflows/node-step-docker-build-and-push-image.yml +++ b/.github/workflows/node-step-docker-build-and-push-image.yml @@ -75,7 +75,7 @@ jobs: steps: - name: NodeJS Build - uses: zupit-it/pipeline-templates/.github/actions/node/build@v1.7.2 + uses: zupit-it/pipeline-templates/.github/actions/node/build@v1.8.0 with: NODE_VERSION: ${{ inputs.NODE_VERSION }} RELEASE_ENVIRONMENT: ${{ inputs.RELEASE_ENVIRONMENT }} @@ -115,7 +115,7 @@ jobs: - name: Docker Build & Push id: docker - uses: zupit-it/pipeline-templates/.github/actions/docker/build-and-push@v1.7.2 + uses: zupit-it/pipeline-templates/.github/actions/docker/build-and-push@v1.8.0 with: REGISTRY_URL: ${{ inputs.REGISTRY_URL }} REGISTRY_USER: ${{ inputs.REGISTRY_USER }} diff --git a/.github/workflows/sonar-step-dotnet-analyze.yml b/.github/workflows/sonar-step-dotnet-analyze.yml index ac38391a..5f020836 100644 --- a/.github/workflows/sonar-step-dotnet-analyze.yml +++ b/.github/workflows/sonar-step-dotnet-analyze.yml @@ -45,7 +45,7 @@ jobs: uses: actions/checkout@v3 - name: Install .NET - uses: zupit-it/pipeline-templates/.github/actions/dotnet/install@v1.7.2 + uses: zupit-it/pipeline-templates/.github/actions/dotnet/install@v1.8.0 with: WORKING_DIRECTORY: ${{ inputs.WORKING_DIRECTORY }} DOTNET_VERSION: ${{ inputs.DOTNET_VERSION }} @@ -72,13 +72,13 @@ jobs: "${params[@]}" - name: Build - uses: zupit-it/pipeline-templates/.github/actions/dotnet/build@v1.7.2 + uses: zupit-it/pipeline-templates/.github/actions/dotnet/build@v1.8.0 with: WORKING_DIRECTORY: ${{ inputs.WORKING_DIRECTORY }} BUILD_CONFIG: "Debug" - name: Run tests - uses: zupit-it/pipeline-templates/.github/actions/dotnet/test@v1.7.2 + uses: zupit-it/pipeline-templates/.github/actions/dotnet/test@v1.8.0 with: WORKING_DIRECTORY: ${{ inputs.WORKING_DIRECTORY }} EXCLUDE_FILES: ${{ inputs.COVERAGE_EXCLUSIONS }} diff --git a/README.md b/README.md index 9ab77501..a48ba7b9 100644 --- a/README.md +++ b/README.md @@ -129,7 +129,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.7.2 + uses: zupit-it/pipeline-templates/.github/workflows/node-step-docker-build-and-push-image.yml@v1.8.0 with: LABELS: "['pinga', 'pipeline', 'container']" NODE_VERSION: 16.17.0 @@ -188,7 +188,7 @@ steps: - name: Build & Push Docker id: docker - uses: zupit-it/pipeline-templates/.github/actions/docker/build-and-push@v1.7.2 + uses: zupit-it/pipeline-templates/.github/actions/docker/build-and-push@v1.8.0 with: REGISTRY_URL: ghcr.io REGISTRY_USER: ${{ github.actor }} @@ -239,7 +239,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.7.2 + uses: zupit-it/pipeline-templates/.github/actions/dotnet/install@v1.8.0 with: WORKING_DIRECTORY: "back-end" DOTNET_VERSION: "7" @@ -281,7 +281,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.7.2 + uses: zupit-it/pipeline-templates/.github/actions/dotnet/build@v1.8.0 with: WORKING_DIRECTORY: "back-end" BUILD_CONFIG: "Release" @@ -319,7 +319,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.7.2 + uses: zupit-it/pipeline-templates/.github/actions/dotnet/format@v1.8.0 with: WORKING_DIRECTORY: "back-end" SHELL: "bash" @@ -358,7 +358,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.7.2 + uses: zupit-it/pipeline-templates/.github/actions/dotnet/test@v1.8.0 with: WORKING_DIRECTORY: "back-end" GENERATE_CODE_COVERAGE: true @@ -398,7 +398,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.7.2 + uses: zupit-it/pipeline-templates/.github/actions/dotnet/install@v1.8.0 with: WORKING_DIRECTORY: "back-end" PROJECT: "My.Api/My.Api.csproj" @@ -447,7 +447,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.7.2 + uses: zupit-it/pipeline-templates/.github/actions/dotnet/release@v1.8.0 with: WORKING_DIRECTORY: "back-end" BUILD_CONFIG: "Release" @@ -502,7 +502,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.7.2 + uses: zupit-it/pipeline-templates/.github/actions/azure/app-service/deploy@v1.8.0 with: WORKING_DIRECTORY: "back-end" BINARIES_DIRECTORY: "output" @@ -566,7 +566,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.7.2 + uses: zupit-it/pipeline-templates/.github/actions/azure/storage/deploy@v1.8.0 with: WORKING_DIRECTORY: front-end BINARIES_DIRECTORY: dist/apps/my-app @@ -613,7 +613,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.7.2 + uses: zupit-it/pipeline-templates/.github/actions/iis/deploy@v1.8.0 with: ARTIFACT_NAME: my-artifact-name APPS_PATH: 'C:\inetpub' @@ -647,12 +647,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.7.2 + uses: zupit-it/pipeline-templates/.github/actions/artifact/generate-name@v1.8.0 with: NAME_PREFIX: dotnet-build - name: Build - uses: zupit-it/pipeline-templates/.github/actions/dotnet/release@v1.7.2 + uses: zupit-it/pipeline-templates/.github/actions/dotnet/release@v1.8.0 with: WORKING_DIRECTORY: ${{ inputs.WORKING_DIRECTORY }} BUILD_CONFIG: "Release" @@ -660,7 +660,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.7.2 + uses: zupit-it/pipeline-templates/.github/actions/artifact/upload@v1.8.0 with: SOURCE_FOLDER: my-source-folder ARTIFACT_NAME: ${{ steps.artifact-name.outputs.ARTIFACT_NAME }} @@ -691,7 +691,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.7.2 + uses: zupit-it/pipeline-templates/.github/actions/artifact/download@v1.8.0 with: ARTIFACT_NAME: my-artifact-name ``` @@ -721,12 +721,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.7.2 + uses: zupit-it/pipeline-templates/.github/actions/artifact/generate-name@v1.8.0 with: NAME_PREFIX: dotnet-build - name: Build - uses: zupit-it/pipeline-templates/.github/actions/dotnet/release@v1.7.2 + uses: zupit-it/pipeline-templates/.github/actions/dotnet/release@v1.8.0 with: WORKING_DIRECTORY: my-dir BUILD_CONFIG: "Release" @@ -734,7 +734,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.7.2 + uses: zupit-it/pipeline-templates/.github/actions/artifact/upload@v1.8.0 with: SOURCE_FOLDER: my-source-folder ARTIFACT_NAME: ${{ steps.artifact-name.outputs.ARTIFACT_NAME }} @@ -768,7 +768,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.7.2 + uses: zupit-it/pipeline-templates/.github/actions/artifact/create-archive@v1.8.0 with: SOURCE_FOLDER: my-source-folder ARCHIVE_NAME: my-archive @@ -796,7 +796,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.7.2 + uses: zupit-it/pipeline-templates/.github/actions/artifact/extract-archive@v1.8.0 with: ARCHIVE_PATH: /tmp/my-archive.tar.gz OUTPUT_FOLDER: my-output-folder @@ -885,7 +885,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.7.2 + uses: zupit-it/pipeline-templates/.github/workflows/node-workflow-common.yml@v1.8.0 with: NATIVE_CI_LABELS: "['pinga', 'pipeline', 'native']" CONTAINER_CI_LABELS: "['pinga', 'pipeline', 'container']" @@ -923,7 +923,7 @@ jobs: angular-common: needs: check-changes - uses: zupit-it/pipeline-templates/.github/workflows/node-workflow-common.yml@v1.7.2 + uses: zupit-it/pipeline-templates/.github/workflows/node-workflow-common.yml@v1.8.0 with: WORKING_DIRECTORY: "frontend" NODE_VERSION: "14.11.0" @@ -993,7 +993,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.7.2 + uses: zupit-it/pipeline-templates/.github/workflows/node-step-docker-build-and-push-image.yml@v1.8.0 with: LABELS: "['pinga', 'pipeline', 'container']" NODE_VERSION: 16.17.0 @@ -1028,7 +1028,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.7.2 + uses: zupit-it/pipeline-templates/.github/workflows/node-step-azure-storage-build-and-deploy.yml@v1.8.0 with: CONTAINER_CI_LABELS: "['my-team', 'pipeline', 'container']" WORKING_DIRECTORY: front-end @@ -1087,7 +1087,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.7.2 + uses: zupit-it/pipeline-templates/.github/workflows/django-workflow-common.yml@v1.8.0 with: WORKING_DIRECTORY: backend PYTHON_IMAGE: python:3.8.2-slim-buster @@ -1126,7 +1126,7 @@ jobs: django-common: needs: check-changes - uses: zupit-it/pipeline-templates/.github/workflows/django-workflow-common.yml@v1.7.2 + uses: zupit-it/pipeline-templates/.github/workflows/django-workflow-common.yml@v1.8.0 with: WORKING_DIRECTORY: "backend" PYTHON_IMAGE: "python:3.8.2-slim-buster" @@ -1185,7 +1185,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.7.2 + uses: zupit-it/pipeline-templates/.github/workflows/springboot-workflow-common.yml@v1.8.0 with: NATIVE_CI_LABELS: "['pinga', 'pipeline', 'native']" CONTAINER_CI_LABELS: "['pinga', 'pipeline', 'container']" @@ -1222,7 +1222,7 @@ jobs: - 'frontend/**' java-common: - uses: zupit-it/pipeline-templates/.github/workflows/springboot-workflow-common.yml@v1.7.2 + uses: zupit-it/pipeline-templates/.github/workflows/springboot-workflow-common.yml@v1.8.0 with: NATIVE_CI_LABELS: "['pinga', 'pipeline', 'native']" CONTAINER_CI_LABELS: "['pinga', 'pipeline', 'container']" @@ -1280,7 +1280,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.7.2 + uses: zupit-it/pipeline-templates/.github/workflows/springboot-step-docker-build-and-push-image.yml@v1.8.0 with: LABELS: "['pinga', 'pipeline', 'container']" JAVA_IMAGE: openjdk:12 @@ -1324,7 +1324,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.7.2 + uses: zupit-it/pipeline-templates/.github/workflows/dotnet-workflow-common.yml@v1.8.0 with: WORKING_DIRECTORY: "back-end" DOTNET_IMAGE: "'mcr.microsoft.com/dotnet/sdk:7.0" @@ -1376,7 +1376,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.7.2 + uses: zupit-it/pipeline-templates/.github/workflows/docker-step-build-and-push-image.yml@v1.8.0 with: LABELS: "['pinga', 'pipeline', 'native']" RELEASE_ENVIRONMENT: testing @@ -1419,7 +1419,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.7.2 + uses: zupit-it/pipeline-templates/.github/workflows/docker-step-deploy.yml@v1.8.0 with: LABELS: "[ 'pinga', 'deploy', 'native', 'zupit-applications' ]" ENVIRONMENT: testing @@ -1467,7 +1467,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.7.2 + uses: zupit-it/pipeline-templates/.github/workflows/docker-step-delete-images.yml@v1.8.0 with: LABELS: "['pinga', 'pipeline', 'native']" IMAGE_NAME: "ionic" @@ -1503,7 +1503,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.7.2 + uses: zupit-it/pipeline-templates/.github/workflows/jira-step-move-issue.yml@v1.8.0 with: LABELS: "['pinga', 'pipeline', 'native']" STATUS: Developed @@ -1535,7 +1535,7 @@ on: jobs: jira-move-issue-to-in-progress: - uses: zupit-it/pipeline-templates/.github/workflows/jira-step-move-issue.yml@v1.7.2 + uses: zupit-it/pipeline-templates/.github/workflows/jira-step-move-issue.yml@v1.8.0 with: LABELS: "['pinga', 'pipeline', 'native']" STATUS: "In progress" @@ -1557,7 +1557,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.7.2 + uses: zupit-it/pipeline-templates/.github/workflows/jira-step-move-issue.yml@v1.8.0 with: LABELS: "['pinga', 'pipeline', 'native']" STATUS: "Merge request" @@ -1580,7 +1580,7 @@ on: jobs: jira-move-issue-to-developed: - uses: zupit-it/pipeline-templates/.github/workflows/jira-step-move-issue.yml@v1.7.2 + uses: zupit-it/pipeline-templates/.github/workflows/jira-step-move-issue.yml@v1.8.0 if: ${{ github.event.workflow_run.conclusion == 'success' }} with: LABELS: "['pinga', 'pipeline', 'native']" @@ -1607,7 +1607,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.7.2 + uses: zupit-it/pipeline-templates/.github/workflows/conventional-commits-step-lint.yml@v1.8.0 with: LABELS: "['pinga', 'pipeline', 'native']" CONFIG_FILE: .commitlintrc.json @@ -1631,7 +1631,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.7.2 + uses: zupit-it/pipeline-templates/.github/workflows/conventional-commits-step-release.yml@v1.8.0 with: LABELS: "['pinga', 'pipeline', 'native']" secrets: inherit @@ -1672,7 +1672,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.7.2 + uses: zupit-it/pipeline-templates/.github/workflows/sonar-step-analyze.yml@v1.8.0 with: WORKING_DIRECTORY: frontend ARTIFACT_FILENAME: lcov.info @@ -1717,7 +1717,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.7.2 + uses: zupit-it/pipeline-templates/.github/workflows/sonar-step-dotnet-analyze.yml@v1.8.0 with: CONTAINER_CI_LABELS: "['team', 'pipeline', 'container']" WORKING_DIRECTORY: "back-end"