Update docker image tags to 8.7.0-alpha.64 #1792
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: | |
push: | |
branches: | |
- develop | |
pull_request: | |
branches: | |
- develop | |
types: | |
- opened | |
- reopened | |
- synchronize | |
- labeled | |
workflow_dispatch: | |
env: | |
CHART_DIR: "charts/activiti-cloud-full-example" | |
jobs: | |
pre-checks: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 | |
- name: Check dependabot build | |
uses: Activiti/Activiti/.github/actions/check-ext-build@7700f0283a9ff5181581a350d2520e55c61c1c60 # 8.6.0 | |
- name: Setup Helm Docs | |
uses: Alfresco/alfresco-build-tools/.github/actions/setup-helm-docs@7c08513b5d33b682ac518b369e5e7b8454f2fd96 # v5.29.3 | |
with: | |
version: 1.13.1 | |
- name: Run Checkov | |
uses: bridgecrewio/checkov-action@e1bb78184f5dd3690fb1089d6c4f51295f9dff48 # v12.1839.0 | |
with: | |
framework: kubernetes | |
- name: pre-commit | |
uses: Alfresco/alfresco-build-tools/.github/actions/pre-commit@7c08513b5d33b682ac518b369e5e7b8454f2fd96 # v5.29.3 | |
with: | |
skip_checkout: true | |
- name: Ensure SHA pinned actions | |
uses: zgosalvez/github-actions-ensure-sha-pinned-actions@b88cd0aad2c36a63e42c71f81cb1958fed95ac87 # v3.0.10 | |
build: | |
runs-on: ubuntu-latest | |
needs: pre-checks | |
steps: | |
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 | |
- name: Build | |
uses: Alfresco/alfresco-build-tools/.github/actions/helm-build-chart@7c08513b5d33b682ac518b369e5e7b8454f2fd96 # v5.29.3 | |
with: | |
chart-dir: ${{ env.CHART_DIR }} | |
- uses: Alfresco/alfresco-build-tools/.github/actions/resolve-preview-name@7c08513b5d33b682ac518b369e5e7b8454f2fd96 # v5.29.3 | |
id: resolve-preview | |
- name: Setup Cluster | |
uses: Alfresco/alfresco-build-tools/.github/actions/setup-kind@7c08513b5d33b682ac518b369e5e7b8454f2fd96 # v5.29.3 | |
- name: Compute Keycloak Client Secret | |
id: compute-keycloak-secret | |
shell: bash | |
run: echo "result=$(uuidgen)" >> $GITHUB_OUTPUT | |
- name: Execute helm upgrade dry-run | |
env: | |
CHART_DIR: ${{ env.CHART_DIR }} | |
NAMESPACE: ${{ steps.resolve-preview.outputs.preview-name }} | |
DOMAIN: "example" | |
KEYCLOAK_SECRET: ${{ steps.compute-keycloak-secret.outputs.result }} | |
shell: bash | |
run: | | |
NAMESPACE_LOWERCASE=$(echo ${NAMESPACE} | tr "[:upper:]" "[:lower:]") | |
helm upgrade $NAMESPACE_LOWERCASE $CHART_DIR \ | |
--install \ | |
--set global.gateway.domain=$DOMAIN \ | |
--set global.keycloak.clientSecret=$KEYCLOAK_SECRET \ | |
--namespace $NAMESPACE_LOWERCASE \ | |
--wait \ | |
--dry-run | |
parse-next-release: | |
runs-on: ubuntu-latest | |
needs: build | |
if: github.event_name == 'push' | |
outputs: | |
next-release: ${{ steps.parse-next-release.outputs.next-release }} | |
steps: | |
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 | |
- name: Parse next release | |
id: parse-next-release | |
uses: Alfresco/alfresco-build-tools/.github/actions/helm-parse-next-release@7c08513b5d33b682ac518b369e5e7b8454f2fd96 # v5.29.3 | |
with: | |
chart-dir: ${{ env.CHART_DIR }} | |
publish: | |
needs: parse-next-release | |
if: github.event_name == 'push' | |
uses: Alfresco/alfresco-build-tools/.github/workflows/helm-publish-new-package-version.yml@7c08513b5d33b682ac518b369e5e7b8454f2fd96 # v5.29.3 | |
with: | |
next-version: ${{ needs.parse-next-release.outputs.next-release }} | |
chart-dir: charts/activiti-cloud-full-example | |
helm-charts-repo: Activiti/activiti-cloud-helm-charts | |
helm-charts-repo-branch: gh-pages | |
secrets: inherit | |
promote: | |
if: github.event_name == 'push' | |
needs: | |
- publish | |
runs-on: ubuntu-latest | |
env: | |
VERSION: ${{ needs.publish.outputs.version }} | |
DEVELOPMENT_BRANCH: ${{ github.ref_name }} | |
steps: | |
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 | |
- run: echo ACTIVITI_CLOUD_APPLICATION_VERSION=`yq .runtime-bundle.image.tag charts/activiti-cloud-full-example/values.yaml` >> $GITHUB_ENV | |
- uses: Alfresco/alfresco-build-tools/.github/actions/jx-updatebot-pr@7c08513b5d33b682ac518b369e5e7b8454f2fd96 # v5.29.3 | |
env: | |
GH_TOKEN: ${{ secrets.BOT_GITHUB_TOKEN }} | |
with: | |
version: ${{ env.VERSION }} | |
auto-merge: 'true' | |
labels: 'be-propagation,${{ env.DEVELOPMENT_BRANCH }}' | |
base-branch-name: ${{ env.DEVELOPMENT_BRANCH }} | |
git-username: ${{ secrets.BOT_GITHUB_USERNAME }} | |
git-token: ${{ secrets.BOT_GITHUB_TOKEN }} | |
git-author-name: ${{ secrets.BOT_GITHUB_USERNAME }} | |
notify: | |
runs-on: ubuntu-latest | |
needs: | |
- build | |
- publish | |
- promote | |
if: always() && failure() && github.event_name == 'push' | |
steps: | |
- name: Slack Notification | |
uses: Alfresco/alfresco-build-tools/.github/actions/send-slack-notification@7c08513b5d33b682ac518b369e5e7b8454f2fd96 # v5.29.3 | |
with: | |
channel-id: 'C03PMT6APFU' # eng-hxp-studio-activiti-gh-notifs, to be renamed eng-automate-activiti-gh-notifs | |
token: ${{ secrets.SLACK_NOTIFICATION_BOT_TOKEN }} |