chore(lambda): bump @vitest/coverage-v8 from 3.0.8 to 3.2.4 in /lambd… #2234
This file contains hidden or 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: "Packer checks" | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
paths: | |
- "images/**" | |
- ".github/workflows/packer-build.yml" | |
- "module/runners/templates/**" | |
permissions: | |
contents: read | |
env: | |
AWS_REGION: eu-west-1 | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
jobs: | |
verify_packer: | |
name: Verify packer | |
runs-on: ubuntu-latest | |
container: | |
image: index.docker.io/hashicorp/packer@sha256:12c441b8a3994e7df9f0e2692d9298f14c387e70bcc06139420977dbf80a137b # 1.11.2 | |
strategy: | |
matrix: | |
image: ["linux-al2023", "windows-core-2019", "windows-core-2022", "ubuntu-focal", "ubuntu-jammy", "ubuntu-jammy-arm64"] | |
defaults: | |
run: | |
working-directory: images/${{ matrix.image }} | |
steps: | |
- name: Harden the runner (Audit all outbound calls) | |
uses: step-security/harden-runner@ec9f2d5744a09debf3a187a3f4f675c53b671911 # v2.13.0 | |
with: | |
egress-policy: audit | |
- name: "Checkout" | |
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
with: | |
persist-credentials: false | |
- name: packer init | |
run: packer init . | |
- name: check packer formatting | |
run: packer fmt -recursive -check=true . | |
- name: packer validate | |
run: packer validate -evaluate-datasources . |