mirror of
https://github.com/hashicorp/vault.git
synced 2026-06-26 17:49:02 -04:00
* actions: pin to latest actions - actions/checkout@9c091bb21b => v7.0.0 Adds a guardrail to prevent accidentally checking out fork pull request code in privileged GitHub Actions contexts (pull_request_target and PR-triggered workflow_run), with an explicit opt-in escape hatch for advanced workflows. - pnpm/action-setup@0ebf47130e => v6.0.9 Update pnpm to v11.7.0 - Add .github/actions/build-ui to ui changed files group - Add .github/actions/build-ui to ui/frontend CODEOWNERS Signed-off-by: Ryan Cragun <me@ryan.ec> Co-authored-by: Ryan Cragun <me@ryan.ec>
59 lines
2 KiB
YAML
59 lines
2 KiB
YAML
name: test-ci-bootstrap
|
|
|
|
# cancel existing runs of the same workflow on the same ref
|
|
concurrency:
|
|
group: ${{ github.workflow }}-${{ github.head_ref || github.ref }}
|
|
cancel-in-progress: true
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
pull_request:
|
|
branches:
|
|
- main
|
|
paths:
|
|
- enos/ci/**
|
|
- .github/workflows/test-ci-bootstrap.yml
|
|
push:
|
|
branches:
|
|
- main
|
|
paths:
|
|
- enos/ci/**
|
|
- .github/workflows/test-ci-bootstrap.yml
|
|
|
|
jobs:
|
|
bootstrap-ci:
|
|
runs-on: ${{ github.repository == 'hashicorp/vault' && 'ubuntu-latest' || fromJSON('["self-hosted","ubuntu-22.04-x64"]') }}
|
|
permissions: write-all
|
|
env:
|
|
TF_WORKSPACE: "${{ github.event.repository.name }}-ci-enos-bootstrap"
|
|
TF_VAR_repository: ${{ github.event.repository.name }}
|
|
TF_VAR_aws_ssh_public_key: ${{ secrets.SSH_KEY_PUBLIC_CI }}
|
|
TF_TOKEN_app_terraform_io: ${{ secrets.TF_API_TOKEN }}
|
|
steps:
|
|
- uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
|
|
- name: Set up Terraform
|
|
uses: hashicorp/setup-terraform@dfe3c3f87815947d99a8997f908cb6525fc44e9e # v4.0.1
|
|
with:
|
|
terraform_wrapper: false
|
|
- name: Configure AWS credentials
|
|
uses: aws-actions/configure-aws-credentials@e7f100cf4c008499ea8adda475de1042d6975c7b # v6.2.0
|
|
with:
|
|
aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID_CI_09042025 }}
|
|
aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY_CI_09042025 }}
|
|
aws-region: us-east-1
|
|
role-to-assume: ${{ secrets.AWS_ROLE_ARN_CI }}
|
|
role-skip-session-tagging: true
|
|
role-duration-seconds: 3600
|
|
- name: Init Terraform
|
|
id: tf_init
|
|
run: |
|
|
terraform -chdir=enos/ci/bootstrap init -input=false
|
|
- name: Plan Terraform
|
|
id: tf_plan
|
|
run: |
|
|
terraform -chdir=enos/ci/bootstrap plan
|
|
- name: Apply Terraform
|
|
if: ${{ github.ref == 'refs/heads/main' }}
|
|
id: tf_apply
|
|
run: |
|
|
terraform -chdir=enos/ci/bootstrap apply -auto-approve
|