Bump zizmorcore/zizmor-action from 0.6.2 to 0.6.3 (#293) #628
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
| # Copyright 2025 Chainguard, Inc. | |
| # SPDX-License-Identifier: Apache-2.0 | |
| name: E2E Tests | |
| on: | |
| pull_request: | |
| branches: | |
| - 'main' | |
| paths-ignore: | |
| - 'README.md' | |
| push: | |
| branches: | |
| - 'main' | |
| paths-ignore: | |
| - 'README.md' | |
| workflow_dispatch: # Allows manual triggering of the workflow | |
| permissions: {} | |
| jobs: | |
| e2e-test: | |
| name: End-to-End Tests | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 15 | |
| permissions: | |
| contents: read | |
| steps: | |
| - name: Harden Runner | |
| uses: step-security/harden-runner@05e31511f85b41b11d1cf0ef85d0992719546e2c # v2.21.0 | |
| with: | |
| egress-policy: audit | |
| - uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1 | |
| with: | |
| persist-credentials: false | |
| - uses: actions/setup-go@b7ad1dad31e06c5925ef5d2fc7ad053ef454303e # v7.0.0 | |
| with: | |
| go-version-file: 'go.mod' | |
| check-latest: true | |
| cache: true | |
| - uses: hashicorp/setup-terraform@dfe3c3f87815947d99a8997f908cb6525fc44e9e # v4.0.1 | |
| with: | |
| terraform_version: '1.15.*' | |
| terraform_wrapper: false | |
| - name: Set up kind | |
| uses: chainguard-dev/actions/setup-kind@a9d4aa7202a63f8a6b8f81bb1570a0ca54460ac5 # v1.6.34 | |
| with: | |
| # go-containerregistry only auto-detects *.localhost hostnames as | |
| # plain-HTTP registries, so the default registry.local would be | |
| # dialed over HTTPS and fail. | |
| registry-authority: registry.localhost:5000 | |
| - name: Set up Helm | |
| uses: azure/setup-helm@9bc31f4ebc9c6b171d7bfbaa5d006ae7abdb4310 # v5.0.1 | |
| - name: Run e2e tests | |
| run: | | |
| cd e2e-tests | |
| ./e2e.sh |