FEATURE: update cilium version to v1.16.1 #429
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: "Terraform test" | |
on: [pull_request] | |
jobs: | |
tflint: | |
name: Lint | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@master | |
- name: TFLint | |
uses: docker://ghcr.io/terraform-linters/tflint:v0.48.0 | |
fmt-and-validate: | |
name: fmt and validate | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@master | |
- name: Install terraform | |
env: | |
TF_VERSION: 1.5.7 | |
run: | | |
# Install terraform | |
wget https://releases.hashicorp.com/terraform/${TF_VERSION}/terraform_${TF_VERSION}_linux_amd64.zip -O /tmp/terraform.zip | |
yes "y" | sudo unzip -d /usr/local/bin/ /tmp/terraform.zip | |
- name: Format Code | |
run: make fmt | |
- name: Validate Code | |
run: make validate | |
- name: Validate ignition | |
env: | |
IGNITION_VERSION: 2.14.0 | |
run: | | |
wget https://github.com/coreos/ignition/releases/download/v${IGNITION_VERSION}/ignition-validate-x86_64-linux -O /tmp/ignition-validate | |
sudo chmod +x /tmp/ignition-validate && sudo mv /tmp/ignition-validate /usr/local/bin/ignition-validate | |
make validate-ign | |