From e6973dd22f336b065ab6218b325e850a4ae5fbb3 Mon Sep 17 00:00:00 2001 From: Anahide Tchertchian <608958+atchertchian@users.noreply.github.com> Date: Thu, 8 Dec 2022 10:34:01 +0100 Subject: [PATCH] Release v1.24.1 (#197) --- .github/actions/build-helm-chart/action.yml | 2 +- .../actions/calculate-next-internal-version/action.yml | 2 +- .github/actions/dbp-charts/publish-chart/action.yml | 2 +- .github/actions/dbp-charts/verify-helm/action.yml | 8 ++++---- .github/actions/helm-integration-tests/action.yml | 2 +- .github/actions/helm-publish-chart/action.yml | 2 +- .github/actions/helm-release-and-publish/action.yml | 10 +++++----- .github/actions/helm-update-chart-version/action.yml | 2 +- .github/actions/maven-build-and-tag/action.yml | 4 ++-- .github/actions/maven-release/action.yml | 4 ++-- .github/actions/publish-helm-chart/action.yml | 2 +- .github/actions/send-slack-notification/action.yml | 2 +- .github/actions/setup-helm-docs/action.yml | 2 +- .github/actions/setup-jx-release-version/action.yml | 2 +- .github/actions/setup-terraform-docs/action.yml | 2 +- .../actions/update-pom-to-next-pre-release/action.yml | 4 ++-- .github/workflows/build-and-tag-maven.yml | 2 +- .github/workflows/dependabot-auto-merge.yml | 2 +- .github/workflows/helm-publish-new-package-version.yml | 10 +++++----- .github/workflows/versions-propagation-auto-merge.yml | 2 +- .pre-commit-config.yaml | 2 +- .travis.aws-iam-authenticator_install.yml | 2 +- .travis.helm-docs_install.yml | 2 +- .travis.helm.yml | 4 ++-- .travis.helm_install.yml | 2 +- .travis.java.yml | 6 +++--- .travis.java_docker.yml | 4 ++-- .travis.jq_install.yml | 2 +- .travis.kcadm_install.yml | 2 +- .travis.kubepug_install.yml | 2 +- .travis.kubernetes_install.yml | 2 +- .travis.rancher_cli_install.yml | 2 +- .travis.rancher_cli_kubernetes_config.yml | 2 +- .travis.terraform-docs_install.yml | 2 +- .travis.terraform_install.yml | 2 +- .travis.tflint_install.yml | 2 +- .travis.yq_install.yml | 2 +- 37 files changed, 55 insertions(+), 55 deletions(-) diff --git a/.github/actions/build-helm-chart/action.yml b/.github/actions/build-helm-chart/action.yml index 79cce704e..8aec5bcc8 100644 --- a/.github/actions/build-helm-chart/action.yml +++ b/.github/actions/build-helm-chart/action.yml @@ -11,6 +11,6 @@ runs: - name: Deprecation Warning shell: bash run: echo "::warning title=build-helm-chart/action.yml::This action is deprecated, use Alfresco/alfresco-build-tools/.github/actions/helm-build-chart instead." - - uses: Alfresco/alfresco-build-tools/.github/actions/helm-build-chart@v1.24.0 + - uses: Alfresco/alfresco-build-tools/.github/actions/helm-build-chart@v1.24.1 with: chart-dir: ${{ inputs.chart-dir }} diff --git a/.github/actions/calculate-next-internal-version/action.yml b/.github/actions/calculate-next-internal-version/action.yml index 4a32d87cd..13419746a 100644 --- a/.github/actions/calculate-next-internal-version/action.yml +++ b/.github/actions/calculate-next-internal-version/action.yml @@ -20,7 +20,7 @@ runs: using: "composite" steps: - uses: actions/setup-python@v2 - - uses: Alfresco/alfresco-build-tools/.github/actions/setup-pysemver@v1.24.0 + - uses: Alfresco/alfresco-build-tools/.github/actions/setup-pysemver@v1.24.1 - id: next-prerelease-resolver run: ${{ github.action_path }}/next-prerelease.sh shell: bash diff --git a/.github/actions/dbp-charts/publish-chart/action.yml b/.github/actions/dbp-charts/publish-chart/action.yml index 4949b41ad..e58666d02 100644 --- a/.github/actions/dbp-charts/publish-chart/action.yml +++ b/.github/actions/dbp-charts/publish-chart/action.yml @@ -26,7 +26,7 @@ runs: with: fetch-depth: 0 - name: Get branch name - uses: Alfresco/alfresco-build-tools/.github/actions/get-branch-name@v1.24.0 + uses: Alfresco/alfresco-build-tools/.github/actions/get-branch-name@v1.24.1 - name: Publish run: ${{ github.action_path }}/publish_chart.sh shell: bash diff --git a/.github/actions/dbp-charts/verify-helm/action.yml b/.github/actions/dbp-charts/verify-helm/action.yml index 67df8de47..d25f73ebd 100644 --- a/.github/actions/dbp-charts/verify-helm/action.yml +++ b/.github/actions/dbp-charts/verify-helm/action.yml @@ -85,14 +85,14 @@ runs: password: ${{ inputs.docker_password }} - name: Get branch name uses: >- - Alfresco/alfresco-build-tools/.github/actions/get-branch-name@v1.24.0 + Alfresco/alfresco-build-tools/.github/actions/get-branch-name@v1.24.1 - name: Get commit msg uses: >- - Alfresco/alfresco-build-tools/.github/actions/get-commit-message@v1.24.0 + Alfresco/alfresco-build-tools/.github/actions/get-commit-message@v1.24.1 - name: Get a namespace to deploy on id: k8sns uses: >- - Alfresco/alfresco-build-tools/.github/actions/dbp-charts/kubernetes-valid-ns@v1.24.0 + Alfresco/alfresco-build-tools/.github/actions/dbp-charts/kubernetes-valid-ns@v1.24.1 with: branch_name: ${{ env.BRANCH_NAME }} release_prefix: ${{ inputs.release_prefix }} @@ -111,7 +111,7 @@ runs: - name: Upload helm deployments logs as artifacts if: always() uses: >- - Alfresco/alfresco-build-tools/.github/actions/kubectl-keep-nslogs@v1.24.0 + Alfresco/alfresco-build-tools/.github/actions/kubectl-keep-nslogs@v1.24.1 with: namespace: ${{ steps.k8sns.outputs.namespace }} - name: Uninstall Helm releases diff --git a/.github/actions/helm-integration-tests/action.yml b/.github/actions/helm-integration-tests/action.yml index be9d60af1..cd6676e9b 100644 --- a/.github/actions/helm-integration-tests/action.yml +++ b/.github/actions/helm-integration-tests/action.yml @@ -37,7 +37,7 @@ runs: using: composite steps: - name: Setup rancher - uses: Alfresco/alfresco-build-tools/.github/actions/setup-rancher-cli@v1.24.0 + uses: Alfresco/alfresco-build-tools/.github/actions/setup-rancher-cli@v1.24.1 with: url: ${{ inputs.test-rancher-url }} access-key: ${{ inputs.test-rancher-access-key }} diff --git a/.github/actions/helm-publish-chart/action.yml b/.github/actions/helm-publish-chart/action.yml index 4df85adab..2162385a5 100644 --- a/.github/actions/helm-publish-chart/action.yml +++ b/.github/actions/helm-publish-chart/action.yml @@ -110,7 +110,7 @@ runs: fi - name: Commit changes - uses: Alfresco/alfresco-build-tools/.github/actions/git-commit-changes@v1.24.0 + uses: Alfresco/alfresco-build-tools/.github/actions/git-commit-changes@v1.24.1 with: username: ${{ inputs.git-username }} add-options: . diff --git a/.github/actions/helm-release-and-publish/action.yml b/.github/actions/helm-release-and-publish/action.yml index fd0abfc8e..501895b37 100644 --- a/.github/actions/helm-release-and-publish/action.yml +++ b/.github/actions/helm-release-and-publish/action.yml @@ -44,7 +44,7 @@ runs: run: | echo "VERSION=$VERSION" >> $GITHUB_ENV - - uses: Alfresco/alfresco-build-tools/.github/actions/git-check-existing-tag@v1.24.0 + - uses: Alfresco/alfresco-build-tools/.github/actions/git-check-existing-tag@v1.24.1 id: check-tag with: tag: ${{ env.VERSION }} @@ -52,13 +52,13 @@ runs: - name: Update chart version if: steps.check-tag.outputs.exists == 'false' - uses: Alfresco/alfresco-build-tools/.github/actions/helm-update-chart-version@v1.24.0 + uses: Alfresco/alfresco-build-tools/.github/actions/helm-update-chart-version@v1.24.1 with: new-version: ${{ env.VERSION }} chart-repository-dir: ${{ inputs.chart-repository-dir }} chart-dir: ${{ inputs.chart-dir }} - - uses: Alfresco/alfresco-build-tools/.github/actions/git-commit-changes@v1.24.0 + - uses: Alfresco/alfresco-build-tools/.github/actions/git-commit-changes@v1.24.1 if: steps.check-tag.outputs.exists == 'false' with: username: ${{ inputs.git-username }} @@ -75,7 +75,7 @@ runs: - name: Package Helm Chart if: steps.check-tag.outputs.exists == 'false' id: package-helm-chart - uses: Alfresco/alfresco-build-tools/.github/actions/helm-package-chart@v1.24.0 + uses: Alfresco/alfresco-build-tools/.github/actions/helm-package-chart@v1.24.1 with: chart-dir: ${{ inputs.chart-dir }} chart-repository-dir: ${{ inputs.chart-repository-dir }} @@ -88,7 +88,7 @@ runs: - name: Publish Helm chart if: steps.check-tag.outputs.exists == 'false' - uses: Alfresco/alfresco-build-tools/.github/actions/helm-publish-chart@v1.24.0 + uses: Alfresco/alfresco-build-tools/.github/actions/helm-publish-chart@v1.24.1 with: helm-charts-repo: ${{inputs.helm-repository}} helm-charts-repo-branch: ${{ inputs.helm-repository-branch }} diff --git a/.github/actions/helm-update-chart-version/action.yml b/.github/actions/helm-update-chart-version/action.yml index bc352a7ad..86c9e5bd6 100644 --- a/.github/actions/helm-update-chart-version/action.yml +++ b/.github/actions/helm-update-chart-version/action.yml @@ -13,7 +13,7 @@ inputs: runs: using: composite steps: - - uses: Alfresco/alfresco-build-tools/.github/actions/setup-helm-docs@v1.24.0 + - uses: Alfresco/alfresco-build-tools/.github/actions/setup-helm-docs@v1.24.1 - name: Update version shell: bash env: diff --git a/.github/actions/maven-build-and-tag/action.yml b/.github/actions/maven-build-and-tag/action.yml index 7b7ad8f12..2006dcabd 100644 --- a/.github/actions/maven-build-and-tag/action.yml +++ b/.github/actions/maven-build-and-tag/action.yml @@ -75,7 +75,7 @@ runs: - name: Update pom files to the new version id: update-pom-to-next-version if: github.event_name == 'push' - uses: Alfresco/alfresco-build-tools/.github/actions/update-pom-to-next-pre-release@v1.24.0 + uses: Alfresco/alfresco-build-tools/.github/actions/update-pom-to-next-pre-release@v1.24.1 with: property-to-update: ${{ inputs.property-to-update }} maven-cli-opts: ${{ steps.compute-maven-options.outputs.result }} @@ -157,7 +157,7 @@ runs: PUSH_OPTION: ${{ steps.define_docker_push.outputs.command }} TAG: ${{env.VERSION}} - - uses: Alfresco/alfresco-build-tools/.github/actions/git-commit-changes@v1.24.0 + - uses: Alfresco/alfresco-build-tools/.github/actions/git-commit-changes@v1.24.1 if: github.event_name == 'push' with: username: ${{ inputs.git-username }} diff --git a/.github/actions/maven-release/action.yml b/.github/actions/maven-release/action.yml index eabda2f8f..9be178372 100644 --- a/.github/actions/maven-release/action.yml +++ b/.github/actions/maven-release/action.yml @@ -67,7 +67,7 @@ runs: path: '${{ env.REPO_DIR }}' token: ${{ inputs.github-token }} - - uses: Alfresco/alfresco-build-tools/.github/actions/git-check-existing-tag@v1.24.0 + - uses: Alfresco/alfresco-build-tools/.github/actions/git-check-existing-tag@v1.24.1 id: check-tag with: tag: ${{ env.RELEASE_VERSION }} @@ -138,7 +138,7 @@ runs: - name: Commit changes if: steps.check-tag.outputs.exists == 'false' - uses: Alfresco/alfresco-build-tools/.github/actions/git-commit-changes@v1.24.0 + uses: Alfresco/alfresco-build-tools/.github/actions/git-commit-changes@v1.24.1 with: username: ${{ inputs.git-username }} add-options: -u diff --git a/.github/actions/publish-helm-chart/action.yml b/.github/actions/publish-helm-chart/action.yml index 8b014cb02..496934511 100644 --- a/.github/actions/publish-helm-chart/action.yml +++ b/.github/actions/publish-helm-chart/action.yml @@ -26,7 +26,7 @@ runs: - name: Deprecation Warning shell: bash run: echo "::warning title=publish-helm-chart/action.yml::This action is deprecated, use Alfresco/alfresco-build-tools/.github/actions/helm-publish-chart instead." - - uses: Alfresco/alfresco-build-tools/.github/actions/helm-publish-chart@v1.24.0 + - uses: Alfresco/alfresco-build-tools/.github/actions/helm-publish-chart@v1.24.1 with: chart-package: ${{ inputs.chart-package }} helm-charts-repo: ${{ inputs.helm-charts-repo }} diff --git a/.github/actions/send-slack-notification/action.yml b/.github/actions/send-slack-notification/action.yml index 0ce4b005e..22ad5091e 100644 --- a/.github/actions/send-slack-notification/action.yml +++ b/.github/actions/send-slack-notification/action.yml @@ -70,7 +70,7 @@ runs: echo "result=$RESULT" >> $GITHUB_OUTPUT - name: Get branch name - uses: Alfresco/alfresco-build-tools/.github/actions/get-branch-name@v1.24.0 + uses: Alfresco/alfresco-build-tools/.github/actions/get-branch-name@v1.24.1 - name: Send slack notification id: slack diff --git a/.github/actions/setup-helm-docs/action.yml b/.github/actions/setup-helm-docs/action.yml index dcde15fda..8f91167a3 100644 --- a/.github/actions/setup-helm-docs/action.yml +++ b/.github/actions/setup-helm-docs/action.yml @@ -8,7 +8,7 @@ inputs: runs: using: "composite" steps: - - uses: Alfresco/alfresco-build-tools/.github/actions/setup-github-release-binary@v1.24.0 + - uses: Alfresco/alfresco-build-tools/.github/actions/setup-github-release-binary@v1.24.1 with: repo: norwoodj/helm-docs version: ${{ inputs.version }} diff --git a/.github/actions/setup-jx-release-version/action.yml b/.github/actions/setup-jx-release-version/action.yml index 14955c7d1..48dcd1b39 100644 --- a/.github/actions/setup-jx-release-version/action.yml +++ b/.github/actions/setup-jx-release-version/action.yml @@ -8,7 +8,7 @@ inputs: runs: using: "composite" steps: - - uses: Alfresco/alfresco-build-tools/.github/actions/setup-github-release-binary@v1.24.0 + - uses: Alfresco/alfresco-build-tools/.github/actions/setup-github-release-binary@v1.24.1 with: repo: jenkins-x-plugins/jx-release-version version: ${{ inputs.version }} diff --git a/.github/actions/setup-terraform-docs/action.yml b/.github/actions/setup-terraform-docs/action.yml index 34e98fb59..5e3e2e5fe 100644 --- a/.github/actions/setup-terraform-docs/action.yml +++ b/.github/actions/setup-terraform-docs/action.yml @@ -8,7 +8,7 @@ inputs: runs: using: "composite" steps: - - uses: Alfresco/alfresco-build-tools/.github/actions/setup-github-release-binary@v1.24.0 + - uses: Alfresco/alfresco-build-tools/.github/actions/setup-github-release-binary@v1.24.1 with: repo: terraform-docs/terraform-docs version: ${{ inputs.version }} diff --git a/.github/actions/update-pom-to-next-pre-release/action.yml b/.github/actions/update-pom-to-next-pre-release/action.yml index 832ef968d..a0381455b 100644 --- a/.github/actions/update-pom-to-next-pre-release/action.yml +++ b/.github/actions/update-pom-to-next-pre-release/action.yml @@ -28,13 +28,13 @@ runs: - id: next-prerelease-resolver name: Calculate next internal release - uses: Alfresco/alfresco-build-tools/.github/actions/calculate-next-internal-version@v1.24.0 + uses: Alfresco/alfresco-build-tools/.github/actions/calculate-next-internal-version@v1.24.1 with: next-version: ${{ steps.parse-next-final-version.outputs.result }} prerelease-type: ${{ inputs.prerelease-type }} - name: Update pom files to the new version - uses: Alfresco/alfresco-build-tools/.github/actions/maven-update-pom-version@v1.24.0 + uses: Alfresco/alfresco-build-tools/.github/actions/maven-update-pom-version@v1.24.1 with: version: ${{ steps.next-prerelease-resolver.outputs.next-prerelease }} maven-cli-opts: ${{ inputs.maven-cli-opts }} diff --git a/.github/workflows/build-and-tag-maven.yml b/.github/workflows/build-and-tag-maven.yml index 002cb7889..9f4b7223a 100644 --- a/.github/workflows/build-and-tag-maven.yml +++ b/.github/workflows/build-and-tag-maven.yml @@ -24,7 +24,7 @@ jobs: version: ${{ steps.build.outputs.version }} steps: - run: echo "::warning title=build-and-tag-maven.yml::This reusable workflow is deprecated, use Alfresco/alfresco-build-tools/.github/actions/maven-build-and-tag instead." - - uses: Alfresco/alfresco-build-tools/.github/actions/maven-build-and-tag@v1.24.0 + - uses: Alfresco/alfresco-build-tools/.github/actions/maven-build-and-tag@v1.24.1 id: build with: property-to-update: ${{ inputs.property-to-update }} diff --git a/.github/workflows/dependabot-auto-merge.yml b/.github/workflows/dependabot-auto-merge.yml index 9d1be4639..5a231045c 100644 --- a/.github/workflows/dependabot-auto-merge.yml +++ b/.github/workflows/dependabot-auto-merge.yml @@ -21,7 +21,7 @@ jobs: runs-on: ubuntu-latest steps: - run: echo "::warning title=dependabot-auto-merge.yml::This reusable workflow is deprecated, use Alfresco/alfresco-build-tools/.github/actions/automate-dependabot instead." - - uses: Alfresco/alfresco-build-tools/.github/actions/automate-dependabot@v1.24.0 + - uses: Alfresco/alfresco-build-tools/.github/actions/automate-dependabot@v1.24.1 with: merge-option: ${{ inputs.merge-option }} token: ${{ secrets.token }} diff --git a/.github/workflows/helm-publish-new-package-version.yml b/.github/workflows/helm-publish-new-package-version.yml index 740fec47b..e5a854778 100644 --- a/.github/workflows/helm-publish-new-package-version.yml +++ b/.github/workflows/helm-publish-new-package-version.yml @@ -42,7 +42,7 @@ jobs: - id: next-release name: Calculate next internal release - uses: Alfresco/alfresco-build-tools/.github/actions/calculate-next-internal-version@v1.24.0 + uses: Alfresco/alfresco-build-tools/.github/actions/calculate-next-internal-version@v1.24.1 with: next-version: ${{ inputs.next-version }} @@ -53,12 +53,12 @@ jobs: echo "VERSION=$VERSION" >> $GITHUB_ENV - name: Update chart version - uses: Alfresco/alfresco-build-tools/.github/actions/helm-update-chart-version@v1.24.0 + uses: Alfresco/alfresco-build-tools/.github/actions/helm-update-chart-version@v1.24.1 with: new-version: ${{env.VERSION}} chart-dir: ${{ inputs.chart-dir }} - - uses: Alfresco/alfresco-build-tools/.github/actions/git-commit-changes@v1.24.0 + - uses: Alfresco/alfresco-build-tools/.github/actions/git-commit-changes@v1.24.1 with: username: ${{ secrets.BOT_GITHUB_USERNAME }} add-options: -u @@ -69,7 +69,7 @@ jobs: - name: Package Helm Chart id: package-helm-chart - uses: Alfresco/alfresco-build-tools/.github/actions/helm-package-chart@v1.24.0 + uses: Alfresco/alfresco-build-tools/.github/actions/helm-package-chart@v1.24.1 with: chart-dir: ${{ inputs.chart-dir }} @@ -77,7 +77,7 @@ jobs: run: git push origin $VERSION - name: Publish Helm chart - uses: Alfresco/alfresco-build-tools/.github/actions/helm-publish-chart@v1.24.0 + uses: Alfresco/alfresco-build-tools/.github/actions/helm-publish-chart@v1.24.1 with: helm-charts-repo: ${{ inputs.helm-charts-repo }} helm-charts-repo-branch: ${{ inputs.helm-charts-repo-branch }} diff --git a/.github/workflows/versions-propagation-auto-merge.yml b/.github/workflows/versions-propagation-auto-merge.yml index f44cf1395..9eac7a85f 100644 --- a/.github/workflows/versions-propagation-auto-merge.yml +++ b/.github/workflows/versions-propagation-auto-merge.yml @@ -17,7 +17,7 @@ jobs: runs-on: ubuntu-latest steps: - run: echo "::warning title=versions-propagation-auto-merge.yml::This reusable workflow is deprecated, use Alfresco/alfresco-build-tools/.github/actions/automate-propagation instead." - - uses: Alfresco/alfresco-build-tools/.github/actions/automate-propagation@v1.24.0 + - uses: Alfresco/alfresco-build-tools/.github/actions/automate-propagation@v1.24.1 with: merge-option: ${{ inputs.merge-option }} auto-merge-token: ${{ secrets.BOT_GITHUB_TOKEN }} diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 52e17b26a..f8d2690f2 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -1,6 +1,6 @@ repos: - repo: https://github.com/Alfresco/alfresco-build-tools - rev: v1.24.0 + rev: v1.24.1 hooks: - id: travis-yml-lint - repo: https://github.com/pre-commit/pre-commit-hooks diff --git a/.travis.aws-iam-authenticator_install.yml b/.travis.aws-iam-authenticator_install.yml index a111f15fc..0c74b63b5 100644 --- a/.travis.aws-iam-authenticator_install.yml +++ b/.travis.aws-iam-authenticator_install.yml @@ -1,5 +1,5 @@ import: - - source: Alfresco/alfresco-build-tools:.travis.home_bin_path.yml@v1.24.0 + - source: Alfresco/alfresco-build-tools:.travis.home_bin_path.yml@v1.24.1 env: global: - AWS_IAM_AUTHENTICATOR_VERSION=${AWS_IAM_AUTHENTICATOR_VERSION:-1.21.2/2021-07-05} diff --git a/.travis.helm-docs_install.yml b/.travis.helm-docs_install.yml index 3d48b1028..d45da31ba 100644 --- a/.travis.helm-docs_install.yml +++ b/.travis.helm-docs_install.yml @@ -1,5 +1,5 @@ import: - - source: Alfresco/alfresco-build-tools:.travis.home_bin_path.yml@v1.24.0 + - source: Alfresco/alfresco-build-tools:.travis.home_bin_path.yml@v1.24.1 env: global: - HELM_DOCS_VERSION=${HELM_DOCS_VERSION:-1.10.0} diff --git a/.travis.helm.yml b/.travis.helm.yml index 617e96fa8..c3e971b5a 100644 --- a/.travis.helm.yml +++ b/.travis.helm.yml @@ -1,6 +1,6 @@ import: - - source: Alfresco/alfresco-build-tools:.travis.helm_install.yml@v1.24.0 - - source: Alfresco/alfresco-build-tools:.travis.common.yml@v1.24.0 + - source: Alfresco/alfresco-build-tools:.travis.helm_install.yml@v1.24.1 + - source: Alfresco/alfresco-build-tools:.travis.common.yml@v1.24.1 branches: only: - develop diff --git a/.travis.helm_install.yml b/.travis.helm_install.yml index baed7bace..cd108c0f6 100644 --- a/.travis.helm_install.yml +++ b/.travis.helm_install.yml @@ -1,5 +1,5 @@ import: - - source: Alfresco/alfresco-build-tools:.travis.home_bin_path.yml@v1.24.0 + - source: Alfresco/alfresco-build-tools:.travis.home_bin_path.yml@v1.24.1 env: global: - HELM_VERSION=${HELM_VERSION:-3.8.1} diff --git a/.travis.java.yml b/.travis.java.yml index 178f65eca..9ddcb3cb9 100644 --- a/.travis.java.yml +++ b/.travis.java.yml @@ -1,7 +1,7 @@ import: - - source: Alfresco/alfresco-build-tools:.travis.maven_config.yml@v1.24.0 - - source: Alfresco/alfresco-build-tools:.travis.java_config.yml@v1.24.0 - - source: Alfresco/alfresco-build-tools:.travis.common.yml@v1.24.0 + - source: Alfresco/alfresco-build-tools:.travis.maven_config.yml@v1.24.1 + - source: Alfresco/alfresco-build-tools:.travis.java_config.yml@v1.24.1 + - source: Alfresco/alfresco-build-tools:.travis.common.yml@v1.24.1 jobs: include: - name: build application diff --git a/.travis.java_docker.yml b/.travis.java_docker.yml index 67a709825..e2ac3ee76 100644 --- a/.travis.java_docker.yml +++ b/.travis.java_docker.yml @@ -1,6 +1,6 @@ import: - - source: Alfresco/alfresco-build-tools:.travis.java.yml@v1.24.0 - - source: Alfresco/alfresco-build-tools:.travis.docker_login.yml@v1.24.0 + - source: Alfresco/alfresco-build-tools:.travis.java.yml@v1.24.1 + - source: Alfresco/alfresco-build-tools:.travis.docker_login.yml@v1.24.1 before_script: - | if [[ "$TRAVIS_PULL_REQUEST" == "false" ]] diff --git a/.travis.jq_install.yml b/.travis.jq_install.yml index 25bae87ef..f826bdb11 100644 --- a/.travis.jq_install.yml +++ b/.travis.jq_install.yml @@ -1,5 +1,5 @@ import: - - source: Alfresco/alfresco-build-tools:.travis.home_bin_path.yml@v1.24.0 + - source: Alfresco/alfresco-build-tools:.travis.home_bin_path.yml@v1.24.1 before_install: - |- TOOL_VERSION=${JQ_VERSION:-1.6} diff --git a/.travis.kcadm_install.yml b/.travis.kcadm_install.yml index eccfe8f81..48ab313d8 100644 --- a/.travis.kcadm_install.yml +++ b/.travis.kcadm_install.yml @@ -1,5 +1,5 @@ import: - - source: Alfresco/alfresco-build-tools:.travis.home_bin_path.yml@v1.24.0 + - source: Alfresco/alfresco-build-tools:.travis.home_bin_path.yml@v1.24.1 env: global: - KEYCLOAK_VERSION=${KEYCLOAK_VERSION:-17.0.1} diff --git a/.travis.kubepug_install.yml b/.travis.kubepug_install.yml index bfe79918d..514a18a61 100644 --- a/.travis.kubepug_install.yml +++ b/.travis.kubepug_install.yml @@ -1,5 +1,5 @@ import: - - source: Alfresco/alfresco-build-tools:.travis.home_bin_path.yml@v1.24.0 + - source: Alfresco/alfresco-build-tools:.travis.home_bin_path.yml@v1.24.1 env: global: - KUBEPUG_VERSION=${KUBEPUG_VERSION:-1.3.2} diff --git a/.travis.kubernetes_install.yml b/.travis.kubernetes_install.yml index aa4fdd3be..3351caef9 100644 --- a/.travis.kubernetes_install.yml +++ b/.travis.kubernetes_install.yml @@ -1,5 +1,5 @@ import: - - source: Alfresco/alfresco-build-tools:.travis.home_bin_path.yml@v1.24.0 + - source: Alfresco/alfresco-build-tools:.travis.home_bin_path.yml@v1.24.1 env: global: - KUBERNETES_VERSION=${KUBERNETES_VERSION:-1.23.5} diff --git a/.travis.rancher_cli_install.yml b/.travis.rancher_cli_install.yml index 83ba8aa45..c7f763c62 100644 --- a/.travis.rancher_cli_install.yml +++ b/.travis.rancher_cli_install.yml @@ -1,5 +1,5 @@ import: - - source: Alfresco/alfresco-build-tools:.travis.home_bin_path.yml@v1.24.0 + - source: Alfresco/alfresco-build-tools:.travis.home_bin_path.yml@v1.24.1 env: global: - RANCHER_CLI_VERSION=${RANCHER_CLI_VERSION:-2.6.0} diff --git a/.travis.rancher_cli_kubernetes_config.yml b/.travis.rancher_cli_kubernetes_config.yml index b4c472a37..32b302e3d 100644 --- a/.travis.rancher_cli_kubernetes_config.yml +++ b/.travis.rancher_cli_kubernetes_config.yml @@ -1,5 +1,5 @@ import: - - source: Alfresco/alfresco-build-tools:.travis.rancher_cli_config.yml@v1.24.0 + - source: Alfresco/alfresco-build-tools:.travis.rancher_cli_config.yml@v1.24.1 before_install: - | mkdir -p $HOME/.kube && rancher cluster kubeconfig $CLUSTER_NAME > $HOME/.kube/config diff --git a/.travis.terraform-docs_install.yml b/.travis.terraform-docs_install.yml index a825b0676..485b77428 100644 --- a/.travis.terraform-docs_install.yml +++ b/.travis.terraform-docs_install.yml @@ -1,5 +1,5 @@ import: - - source: Alfresco/alfresco-build-tools:.travis.home_bin_path.yml@v1.24.0 + - source: Alfresco/alfresco-build-tools:.travis.home_bin_path.yml@v1.24.1 env: global: - TERRAFORM_DOCS_VERSION=${TERRAFORM_DOCS_VERSION:-0.16.0} diff --git a/.travis.terraform_install.yml b/.travis.terraform_install.yml index d22200945..c4ca3f8b3 100644 --- a/.travis.terraform_install.yml +++ b/.travis.terraform_install.yml @@ -1,5 +1,5 @@ import: - - source: Alfresco/alfresco-build-tools:.travis.home_bin_path.yml@v1.24.0 + - source: Alfresco/alfresco-build-tools:.travis.home_bin_path.yml@v1.24.1 env: global: - TERRAFORM_LOCAL_VERSION=$(cat .terraform-version) diff --git a/.travis.tflint_install.yml b/.travis.tflint_install.yml index b1538e96e..16877c750 100644 --- a/.travis.tflint_install.yml +++ b/.travis.tflint_install.yml @@ -1,5 +1,5 @@ import: - - source: Alfresco/alfresco-build-tools:.travis.home_bin_path.yml@v1.24.0 + - source: Alfresco/alfresco-build-tools:.travis.home_bin_path.yml@v1.24.1 env: global: - TFLINT_VERSION=${TFLINT_VERSION:-0.35.0} diff --git a/.travis.yq_install.yml b/.travis.yq_install.yml index 51742cc95..926159b00 100644 --- a/.travis.yq_install.yml +++ b/.travis.yq_install.yml @@ -1,5 +1,5 @@ import: - - source: Alfresco/alfresco-build-tools:.travis.home_bin_path.yml@v1.24.0 + - source: Alfresco/alfresco-build-tools:.travis.home_bin_path.yml@v1.24.1 before_install: - |- TOOL_VERSION=${YQ_VERSION:-4.25.1}