Add k3sup on runners #48
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 Plan | |
on: | |
pull_request: | |
paths: | |
- 'terraform/**' | |
workflow_dispatch: | |
jobs: | |
plan: | |
runs-on: gha-runner-scale-set-kub1k | |
permissions: | |
contents: read | |
pull-requests: write | |
name: Create terraform plan | |
env: | |
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }} | |
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }} | |
VAULT_ADDR: ${{ secrets.VAULT_ADDR }} | |
VAULT_TOKEN: ${{ secrets.VAULT_TOKEN }} | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Install openssh-client | |
run: | | |
sudo apt-get update | |
sudo apt-get install openssh-client -y | |
- name: Set up SSH Agent | |
uses: webfactory/ssh-agent@v0.9.0 | |
with: | |
ssh-private-key: ${{ secrets.SSH_PRIVATE_KEY }} | |
- name: terraform plan | |
uses: dflook/terraform-plan@v1 | |
with: | |
path: terraform | |
workspace: kub1k | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
TERRAFORM_PRE_RUN: | | |
curl -sSL https://github.com/alexellis/k3sup/releases/latest/download/k3sup > k3sup | |
chmod +x k3sup | |
mv k3sup /usr/bin/k3sup | |