build(deps): bump anchore/sbom-action (#467) #103
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: smoke-tests | |
on: | |
workflow_dispatch: | |
inputs: | |
smoketest_versions: | |
description: Set SMOKETEST_VERSIONS environment variable | |
default: latest | |
push: | |
branches: | |
- main | |
concurrency: ${{ github.workflow }} | |
permissions: | |
contents: read | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
env: | |
SSH_KEY: "./id_rsa_terraform" | |
TF_VAR_private_key: "./id_rsa_terraform" | |
TF_VAR_public_key: "./id_rsa_terraform.pub" | |
TF_VAR_user_name: "apm-aws-lambda-${{ github.run_id }}" | |
TF_VAR_BUILD_ID: "${{ github.run_id }}" | |
TF_VAR_ENVIRONMENT: 'ci' | |
TF_VAR_BRANCH: "${{ github.ref_name }}" | |
TF_VAR_REPO: "${{ github.repository }}" | |
SMOKETEST_VERSIONS: "${{ inputs.smoketest_versions || 'latest' }}" | |
SKIP_DESTROY: 0 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Bootstrap Action Workspace | |
uses: ./.github/actions/bootstrap | |
with: | |
goreleaser: 'true' | |
- name: Import Secrets | |
uses: hashicorp/[email protected] | |
with: | |
url: ${{ secrets.VAULT_ADDR }} | |
method: approle | |
roleId: ${{ secrets.VAULT_ROLE_ID }} | |
secretId: ${{ secrets.VAULT_SECRET_ID }} | |
secrets: | | |
secret/observability-team/ci/elastic-observability-aws-account-auth access_key | AWS_ACCESS_KEY_ID ; | |
secret/observability-team/ci/elastic-observability-aws-account-auth secret_key | AWS_SECRET_ACCESS_KEY ; | |
secret/observability-team/ci/elastic-cloud/observability-team-pro apiKey | EC_API_KEY | |
- uses: hashicorp/setup-terraform@v3 | |
with: | |
terraform_version: 1.2.3 | |
- run: make smoketest/run TEST_DIR=./tf | |
- if: always() | |
name: Tear down | |
run: make smoketest/all/cleanup TEST_DIR=./tf | |
- if: always() | |
uses: elastic/apm-pipeline-library/.github/actions/notify-build-status@current | |
with: | |
vaultUrl: ${{ secrets.VAULT_ADDR }} | |
vaultRoleId: ${{ secrets.VAULT_ROLE_ID }} | |
vaultSecretId: ${{ secrets.VAULT_SECRET_ID }} | |
slackChannel: "#apm-aws-lambda" |