[Snyk] Security upgrade @angular-devkit/build-angular from 15.2.8 to 15.2.10 #288
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: Pull Request Closed | |
on: | |
pull_request: | |
types: | |
- closed | |
concurrency: | |
group: pr-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
# Tag images for promotion on GitHub Container Registry (ghcr.io) | |
image-promotions: | |
name: Tag images | |
if: github.event.pull_request.merged == true && github.event.pull_request.base.ref == 'main' | |
runs-on: ubuntu-22.04 | |
strategy: | |
matrix: | |
package: [api, admin, db, public] | |
steps: | |
- uses: shrink/actions-docker-registry-tag@v3 | |
with: | |
registry: ghcr.io | |
repository: ${{ github.repository }}/${{ matrix.package }} | |
target: ${{ github.event.number }} | |
tags: test | |
cleanup-openshift: | |
name: Cleanup OpenShift | |
runs-on: ubuntu-22.04 | |
env: | |
NAME: fom | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Remove OpenShift artifacts | |
run: | | |
oc login --token=${{ secrets.OC_TOKEN }} --server=${{ vars.OC_SERVER }} | |
oc project ${{ vars.OC_NAMESPACE }} | |
# Remove old build runs, build pods and deployment pods | |
oc delete all,pvc,secret,cm -l app=${{ env.NAME }}-${{ github.event.number }} | |