This repository has been archived by the owner on Jul 16, 2024. It is now read-only.
Bump werkzeug from 2.3.3 to 3.0.1 in /webapp/voting-webapp/application/results-exporter #264
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 Workflow | |
on: | |
pull_request: | |
branches: [ main ] | |
jobs: | |
validate-configs: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
- name: Install kustomize | |
run: | | |
wget -q "https://github.com/kubernetes-sigs/kustomize/releases/download/kustomize%2Fv4.2.0/kustomize_v4.2.0_linux_amd64.tar.gz" -O - | tar xz | |
sudo mv kustomize /usr/local/bin/kustomize | |
- name: Build all included kustomizations | |
run: | | |
set -eo pipefail | |
find . -type f -maxdepth 10 -name kustomization.yaml \ | |
| xargs -n1 dirname \ | |
| xargs -I{} sh -c 'echo "Building {}..."; kustomize build {} 1> /dev/null' |