Skip to content

Commit

Permalink
Prepare to release v2.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
tpage-alfresco committed Jun 27, 2023
1 parent c79e5b1 commit 19ab38d
Show file tree
Hide file tree
Showing 23 changed files with 39 additions and 39 deletions.
2 changes: 1 addition & 1 deletion .github/actions/build-helm-chart/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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@v2.4.0
- uses: Alfresco/alfresco-build-tools/.github/actions/helm-build-chart@v2.5.0
with:
chart-dir: ${{ inputs.chart-dir }}
2 changes: 1 addition & 1 deletion .github/actions/calculate-next-internal-version/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ runs:
using: "composite"
steps:
- uses: actions/setup-python@v2
- uses: Alfresco/alfresco-build-tools/.github/actions/setup-pysemver@v2.4.0
- uses: Alfresco/alfresco-build-tools/.github/actions/setup-pysemver@v2.5.0
- id: next-prerelease-resolver
run: ${{ github.action_path }}/next-prerelease.sh
shell: bash
Expand Down
2 changes: 1 addition & 1 deletion .github/actions/dbp-charts/publish-chart/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ runs:
with:
fetch-depth: 0
- name: Get branch name
uses: Alfresco/alfresco-build-tools/.github/actions/get-branch-name@v2.4.0
uses: Alfresco/alfresco-build-tools/.github/actions/get-branch-name@v2.5.0
- name: Publish
run: ${{ github.action_path }}/publish_chart.sh
shell: bash
Expand Down
8 changes: 4 additions & 4 deletions .github/actions/dbp-charts/verify-helm/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -85,14 +85,14 @@ runs:
password: ${{ inputs.docker_password }}
- name: Get branch name
uses: >-
Alfresco/alfresco-build-tools/.github/actions/get-branch-name@v2.4.0
Alfresco/alfresco-build-tools/.github/actions/get-branch-name@v2.5.0
- name: Get commit msg
uses: >-
Alfresco/alfresco-build-tools/.github/actions/get-commit-message@v2.4.0
Alfresco/alfresco-build-tools/.github/actions/get-commit-message@v2.5.0
- name: Get a namespace to deploy on
id: k8sns
uses: >-
Alfresco/alfresco-build-tools/.github/actions/dbp-charts/kubernetes-valid-ns@v2.4.0
Alfresco/alfresco-build-tools/.github/actions/dbp-charts/kubernetes-valid-ns@v2.5.0
with:
branch_name: ${{ env.BRANCH_NAME }}
release_prefix: ${{ inputs.release_prefix }}
Expand All @@ -111,7 +111,7 @@ runs:
- name: Upload helm deployments logs as artifacts
if: always()
uses: >-
Alfresco/alfresco-build-tools/.github/actions/kubectl-keep-nslogs@v2.4.0
Alfresco/alfresco-build-tools/.github/actions/kubectl-keep-nslogs@v2.5.0
with:
namespace: ${{ steps.k8sns.outputs.namespace }}
- name: Uninstall Helm releases
Expand Down
2 changes: 1 addition & 1 deletion .github/actions/get-build-info/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ description: "Get build-related info from GitHub and load it as generically name
runs:
using: composite
steps:
- uses: Alfresco/alfresco-build-tools/.github/actions/get-branch-name@v2.4.0
- uses: Alfresco/alfresco-build-tools/.github/actions/get-branch-name@v2.5.0
- name: "Get build info"
run: |
[[ $GITHUB_EVENT_NAME == "pull_request" ]] && IS_PULL_REQUEST="true" || IS_PULL_REQUEST="false"
Expand Down
2 changes: 1 addition & 1 deletion .github/actions/helm-integration-tests/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ runs:
using: composite
steps:
- name: Setup rancher
uses: Alfresco/alfresco-build-tools/.github/actions/setup-rancher-cli@v2.4.0
uses: Alfresco/alfresco-build-tools/.github/actions/setup-rancher-cli@v2.5.0
with:
url: ${{ inputs.test-rancher-url }}
access-key: ${{ inputs.test-rancher-access-key }}
Expand Down
2 changes: 1 addition & 1 deletion .github/actions/helm-publish-chart/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ runs:
fi
- name: Commit changes
uses: Alfresco/alfresco-build-tools/.github/actions/git-commit-changes@v2.4.0
uses: Alfresco/alfresco-build-tools/.github/actions/git-commit-changes@v2.5.0
with:
username: ${{ inputs.git-username }}
add-options: .
Expand Down
10 changes: 5 additions & 5 deletions .github/actions/helm-release-and-publish/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,21 +44,21 @@ runs:
run: |
echo "VERSION=$VERSION" >> $GITHUB_ENV
- uses: Alfresco/alfresco-build-tools/.github/actions/git-check-existing-tag@v2.4.0
- uses: Alfresco/alfresco-build-tools/.github/actions/git-check-existing-tag@v2.5.0
id: check-tag
with:
tag: ${{ env.VERSION }}
repository-directory: ${{ inputs.chart-repository-dir }}

- name: Update chart version
if: steps.check-tag.outputs.exists == 'false'
uses: Alfresco/alfresco-build-tools/.github/actions/helm-update-chart-version@v2.4.0
uses: Alfresco/alfresco-build-tools/.github/actions/helm-update-chart-version@v2.5.0
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@v2.4.0
- uses: Alfresco/alfresco-build-tools/.github/actions/git-commit-changes@v2.5.0
if: steps.check-tag.outputs.exists == 'false'
with:
username: ${{ inputs.git-username }}
Expand All @@ -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@v2.4.0
uses: Alfresco/alfresco-build-tools/.github/actions/helm-package-chart@v2.5.0
with:
chart-dir: ${{ inputs.chart-dir }}
chart-repository-dir: ${{ inputs.chart-repository-dir }}
Expand All @@ -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@v2.4.0
uses: Alfresco/alfresco-build-tools/.github/actions/helm-publish-chart@v2.5.0
with:
helm-charts-repo: ${{inputs.helm-repository}}
helm-charts-repo-branch: ${{ inputs.helm-repository-branch }}
Expand Down
2 changes: 1 addition & 1 deletion .github/actions/helm-update-chart-version/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ inputs:
runs:
using: composite
steps:
- uses: Alfresco/alfresco-build-tools/.github/actions/setup-helm-docs@v2.4.0
- uses: Alfresco/alfresco-build-tools/.github/actions/setup-helm-docs@v2.5.0
- name: Update version
shell: bash
env:
Expand Down
4 changes: 2 additions & 2 deletions .github/actions/maven-build-and-tag/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ runs:
- name: Update pom files to the new version
id: update-pom-to-next-version
if: github.event_name == 'push' || env.IS_PREVIEW == 'true'
uses: Alfresco/alfresco-build-tools/.github/actions/update-pom-to-next-pre-release@v2.4.0
uses: Alfresco/alfresco-build-tools/.github/actions/update-pom-to-next-pre-release@v2.5.0
with:
property-to-update: ${{ inputs.property-to-update }}
maven-cli-opts: ${{ steps.compute-maven-options.outputs.result }}
Expand Down Expand Up @@ -194,7 +194,7 @@ runs:
shell: bash
run: find . -name TEST-*.xml -exec grep -h testcase {} \; | awk -F '"' '{printf("%s#%s() - %.3fms\n", $4, $2, $6); }' | sort -n -k 3 | tail -20

- uses: Alfresco/alfresco-build-tools/.github/actions/git-commit-changes@v2.4.0
- uses: Alfresco/alfresco-build-tools/.github/actions/git-commit-changes@v2.5.0
if: github.event_name == 'push'
with:
username: ${{ inputs.git-username }}
Expand Down
4 changes: 2 additions & 2 deletions .github/actions/maven-release/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ runs:
path: '${{ env.REPO_DIR }}'
token: ${{ inputs.github-token }}

- uses: Alfresco/alfresco-build-tools/.github/actions/git-check-existing-tag@v2.4.0
- uses: Alfresco/alfresco-build-tools/.github/actions/git-check-existing-tag@v2.5.0
id: check-tag
with:
tag: ${{ env.RELEASE_VERSION }}
Expand Down Expand Up @@ -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@v2.4.0
uses: Alfresco/alfresco-build-tools/.github/actions/git-commit-changes@v2.5.0
with:
username: ${{ inputs.git-username }}
add-options: -u
Expand Down
2 changes: 1 addition & 1 deletion .github/actions/publish-helm-chart/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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@v2.4.0
- uses: Alfresco/alfresco-build-tools/.github/actions/helm-publish-chart@v2.5.0
with:
chart-package: ${{ inputs.chart-package }}
helm-charts-repo: ${{ inputs.helm-charts-repo }}
Expand Down
2 changes: 1 addition & 1 deletion .github/actions/reportportal-prepare/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ runs:
using: composite
steps:
- name: Get branch name
uses: Alfresco/alfresco-build-tools/.github/actions/get-branch-name@v2.4.0
uses: Alfresco/alfresco-build-tools/.github/actions/get-branch-name@v2.5.0

- name: Compute Report Portal input info
id: info
Expand Down
2 changes: 1 addition & 1 deletion .github/actions/send-slack-notification/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ runs:
echo "result=$RESULT" >> $GITHUB_OUTPUT
- name: Get branch name
uses: Alfresco/alfresco-build-tools/.github/actions/get-branch-name@v2.4.0
uses: Alfresco/alfresco-build-tools/.github/actions/get-branch-name@v2.5.0

- name: Send slack notification
id: slack
Expand Down
2 changes: 1 addition & 1 deletion .github/actions/setup-helm-docs/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ inputs:
runs:
using: "composite"
steps:
- uses: Alfresco/alfresco-build-tools/.github/actions/setup-github-release-binary@v2.4.0
- uses: Alfresco/alfresco-build-tools/.github/actions/setup-github-release-binary@v2.5.0
with:
repo: norwoodj/helm-docs
version: ${{ inputs.version }}
2 changes: 1 addition & 1 deletion .github/actions/setup-jx-release-version/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ inputs:
runs:
using: "composite"
steps:
- uses: Alfresco/alfresco-build-tools/.github/actions/setup-github-release-binary@v2.4.0
- uses: Alfresco/alfresco-build-tools/.github/actions/setup-github-release-binary@v2.5.0
with:
repo: jenkins-x-plugins/jx-release-version
version: ${{ inputs.version }}
Expand Down
2 changes: 1 addition & 1 deletion .github/actions/setup-terraform-docs/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ inputs:
runs:
using: "composite"
steps:
- uses: Alfresco/alfresco-build-tools/.github/actions/setup-github-release-binary@v2.4.0
- uses: Alfresco/alfresco-build-tools/.github/actions/setup-github-release-binary@v2.5.0
with:
repo: terraform-docs/terraform-docs
version: ${{ inputs.version }}
Expand Down
4 changes: 2 additions & 2 deletions .github/actions/update-pom-to-next-pre-release/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ runs:
- id: next-prerelease-resolver
name: Calculate next internal release
if: inputs.version == ''
uses: Alfresco/alfresco-build-tools/.github/actions/calculate-next-internal-version@v2.4.0
uses: Alfresco/alfresco-build-tools/.github/actions/calculate-next-internal-version@v2.5.0
with:
next-version: ${{ steps.parse-next-final-version.outputs.result }}
prerelease-type: ${{ inputs.prerelease-type }}
Expand All @@ -50,7 +50,7 @@ runs:
fi
- name: Update pom files to the new version
uses: Alfresco/alfresco-build-tools/.github/actions/maven-update-pom-version@v2.4.0
uses: Alfresco/alfresco-build-tools/.github/actions/maven-update-pom-version@v2.5.0
with:
version: ${{ steps.resolve-version.outputs.version }}
maven-cli-opts: ${{ inputs.maven-cli-opts }}
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/build-and-release-maven.yml
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: Alfresco/alfresco-build-tools/.github/actions/setup-java-build@v2.4.0
- uses: Alfresco/alfresco-build-tools/.github/actions/setup-java-build@v2.5.0
with:
java-version: ${{ inputs.java-version }}
java-distribution: ${{ inputs.java-distribution }}
Expand Down Expand Up @@ -107,11 +107,11 @@ jobs:
- uses: actions/checkout@v3
with:
persist-credentials: false
- uses: Alfresco/alfresco-build-tools/.github/actions/setup-java-build@v2.4.0
- uses: Alfresco/alfresco-build-tools/.github/actions/setup-java-build@v2.5.0
with:
java-version: ${{ inputs.java-version }}
java-distribution: ${{ inputs.java-distribution }}
- uses: Alfresco/alfresco-build-tools/.github/actions/configure-git-author@v2.4.0
- uses: Alfresco/alfresco-build-tools/.github/actions/configure-git-author@v2.5.0
with:
username: ${{ secrets.BOT_GITHUB_USERNAME }}
email: ${{ secrets.BOT_GITHUB_EMAIL }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build-and-tag-maven.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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@v2.4.0
- uses: Alfresco/alfresco-build-tools/.github/actions/maven-build-and-tag@v2.5.0
id: build
with:
property-to-update: ${{ inputs.property-to-update }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/dependabot-auto-merge.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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@v2.4.0
- uses: Alfresco/alfresco-build-tools/.github/actions/automate-dependabot@v2.5.0
with:
merge-option: ${{ inputs.merge-option }}
token: ${{ secrets.token }}
10 changes: 5 additions & 5 deletions .github/workflows/helm-publish-new-package-version.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ jobs:

- id: next-release
name: Calculate next internal release
uses: Alfresco/alfresco-build-tools/.github/actions/calculate-next-internal-version@v2.4.0
uses: Alfresco/alfresco-build-tools/.github/actions/calculate-next-internal-version@v2.5.0
with:
next-version: ${{ inputs.next-version }}

Expand All @@ -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@v2.4.0
uses: Alfresco/alfresco-build-tools/.github/actions/helm-update-chart-version@v2.5.0
with:
new-version: ${{env.VERSION}}
chart-dir: ${{ inputs.chart-dir }}

- uses: Alfresco/alfresco-build-tools/.github/actions/git-commit-changes@v2.4.0
- uses: Alfresco/alfresco-build-tools/.github/actions/git-commit-changes@v2.5.0
with:
username: ${{ secrets.BOT_GITHUB_USERNAME }}
add-options: -u
Expand All @@ -69,15 +69,15 @@ jobs:

- name: Package Helm Chart
id: package-helm-chart
uses: Alfresco/alfresco-build-tools/.github/actions/helm-package-chart@v2.4.0
uses: Alfresco/alfresco-build-tools/.github/actions/helm-package-chart@v2.5.0
with:
chart-dir: ${{ inputs.chart-dir }}

- name: Push tag
run: git push origin $VERSION

- name: Publish Helm chart
uses: Alfresco/alfresco-build-tools/.github/actions/helm-publish-chart@v2.4.0
uses: Alfresco/alfresco-build-tools/.github/actions/helm-publish-chart@v2.5.0
with:
helm-charts-repo: ${{ inputs.helm-charts-repo }}
helm-charts-repo-branch: ${{ inputs.helm-charts-repo-branch }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/versions-propagation-auto-merge.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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@v2.4.0
- uses: Alfresco/alfresco-build-tools/.github/actions/automate-propagation@v2.5.0
with:
merge-option: ${{ inputs.merge-option }}
auto-merge-token: ${{ secrets.BOT_GITHUB_TOKEN }}
Expand Down

0 comments on commit 19ab38d

Please sign in to comment.