mirror of
https://github.com/hashicorp/vault.git
synced 2026-02-03 20:40:45 -05:00
Update to the latest actions. The primary motivation here is to get the
latest action-setup-enos.
- actions/cache => v5.0.3: security patches
- actions/checkout => v6.0.2: small fixes to git user-agent and tag
fetching
- hashicorp/action-setup-enos => v1.50: security patches
Signed-off-by: Ryan Cragun <me@ryan.ec>
Co-authored-by: Ryan Cragun <me@ryan.ec>
55 lines
2.2 KiB
YAML
55 lines
2.2 KiB
YAML
---
|
|
name: lint-enos
|
|
|
|
on:
|
|
pull_request:
|
|
paths:
|
|
- enos/**
|
|
|
|
jobs:
|
|
metadata:
|
|
# Only run this workflow on pull requests from hashicorp/vault branches
|
|
# as we need secrets to install enos.
|
|
if: "! github.event.pull_request.head.repo.fork"
|
|
name: metadata
|
|
runs-on: ${{ github.repository == 'hashicorp/vault' && 'ubuntu-latest' || fromJSON('["self-hosted","ubuntu-latest-x64"]') }}
|
|
outputs:
|
|
runs-on: ${{ steps.metadata.outputs.runs-on }}
|
|
version: ${{ steps.metadata.outputs.version }}
|
|
steps:
|
|
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
|
|
- id: set-product-version
|
|
uses: hashicorp/actions-set-product-version@2ec1b51402b3070bccf7ca95306afbd039e574ff # v2.0.1
|
|
with:
|
|
checkout: false # There's no need to check out again
|
|
- id: metadata
|
|
run: |
|
|
echo "version=${{ steps.set-product-version.outputs.product-version }}" >> "$GITHUB_OUTPUT"
|
|
github_repository="${{ github.repository }}"
|
|
if [ "${github_repository##*/}" == "vault-enterprise" ] ; then
|
|
echo 'runs-on=["self-hosted","ubuntu-latest-x64","type=c6a.2xlarge;c6a.4xlarge;c6a.8xlarge"]' >> "$GITHUB_OUTPUT"
|
|
else
|
|
echo 'runs-on="custom-linux-xl-vault-latest"' >> "$GITHUB_OUTPUT"
|
|
fi
|
|
|
|
lint:
|
|
needs: metadata
|
|
runs-on: ${{ fromJSON(needs.metadata.outputs.runs-on) }}
|
|
steps:
|
|
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
|
|
- uses: ./.github/actions/set-up-go
|
|
with:
|
|
no-restore: true
|
|
no-save: true
|
|
- uses: ./.github/actions/install-tools
|
|
- uses: hashicorp/setup-terraform@b9cd54a3c349d3f38e8881555d616ced269862dd # v3.1.2
|
|
with:
|
|
terraform_wrapper: false
|
|
- uses: hashicorp/action-setup-enos@17b90fcf9591275b468a94aefb9dc6a93017de8a # v1.50
|
|
- name: Ensure shellcheck is available for linting
|
|
run: which shellcheck || (sudo apt update && sudo apt install -y shellcheck)
|
|
- name: lint
|
|
working-directory: ./enos
|
|
env:
|
|
ENOS_VAR_vault_product_version: ${{ needs.metadata.outputs.version }}
|
|
run: make lint
|