File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -133,3 +133,23 @@ jobs:
133133 platforms : linux/amd64,linux/arm64
134134 tags : ${{ steps.cntk-meta.outputs.tags }}
135135 labels : ${{ steps.cntk-meta.outputs.labels }}
136+
137+ notify :
138+ needs : ["build"]
139+ runs-on : ubuntu-latest
140+ if : ${{ github.event_name != 'pull_request' }}
141+
142+ strategy :
143+ matrix :
144+ repo :
145+ - cloud-native-toolkit/image-github-terraform-runner
146+ - cloud-native-toolkit/image-cli-tools-web-terminal
147+
148+ steps :
149+ - name : Repository dispatch ${{ matrix.repo }}
150+ uses : cloud-native-toolkit/action-repository-dispatch@main
151+ with :
152+ notifyRepo : ${{ matrix.repo }}
153+ eventType : released
154+ env :
155+ GITHUB_TOKEN : ${{ secrets.TOKEN }}
Original file line number Diff line number Diff line change 1+ name : Update dependencies
2+
3+ # Controls when the action will run. Triggers the workflow on push or pull request
4+ # events but only for the main branch
5+ on :
6+ repository_dispatch :
7+ types : [ released ]
8+
9+ # A workflow run is made up of one or more jobs that can run sequentially or in parallel
10+ jobs :
11+ update :
12+ uses : cloud-native-toolkit/action-workflows/.github/workflows/update-base-image.yaml@v1
13+ with :
14+ repo : ${{ github.event.client_payload.repo }}
15+ ref : ${{ github.event.client_payload.ref }}
16+ sha : ${{ github.event.client_payload.sha }}
17+ secrets :
18+ TOKEN : ${{ secrets.TOKEN }}
Original file line number Diff line number Diff line change 11ARG TERRAFORM_VERSION=v1.2
2- FROM quay.io/cloudnativetoolkit/cli-tools-core:${TERRAFORM_VERSION}-v1.4.1 -alpine
2+ FROM quay.io/cloudnativetoolkit/cli-tools-core:${TERRAFORM_VERSION}-v1.4.2 -alpine
33
44ARG TARGETPLATFORM
55
Original file line number Diff line number Diff line change 11ARG TERRAFORM_VERSION=v1.2
2- FROM quay.io/cloudnativetoolkit/cli-tools-core:${TERRAFORM_VERSION}-v1.4.1 -fedora
2+ FROM quay.io/cloudnativetoolkit/cli-tools-core:${TERRAFORM_VERSION}-v1.4.2 -fedora
33
44ARG TARGETPLATFORM
55
You can’t perform that action at this time.
0 commit comments